Welcome to MY
Pages.
Graduated Cylinder Updates
I hope to get a build of GraduatedCylinder, a measurements library for .NET on nuget soon.
Simple.Web Updates
I recently started using Simple.Web and became enamoured. One issue that conflicted me was that I used my own explicit serialization code, no auto generation for me. This meant that I needed to create my own MediaTypeHandler. With the help of Mark Rendle and Ian Battersby, I was able to create my own, and at the same time contribute several minor infrastructure changes back that were just released in 0.10.0.
- The
IMediaTypeHandler
interface is now 100% async compatible - The
IMediaTypeHandler
interface now uses generic type parameters forRead
andWrite
- There is a new
MediaTypeHandlerBase<TWireFormat>
that supports codec style two phase serialization. This is used by:- The new
Simple.Web.Xml.ExplicitXmlMediaTypeHandler
- The renamed
Simple.Web.Xml.DataContractXmlMediaTypeHandler
that wasXmlMediaTypeHandler
- The new
Simple.Web.JsonNet.JsonMediaTypeHandler
- The
Simple.Web.JsonNet.HalJsonMediaTypeHandler
- The new
The renamed Simple.Web.JsonNet.JsonMediaTypeHandlerWithDeepLinks
that was JsonMediaTypeHandler
, has not been modified for this release.
A bunch of the test infrastructure for the media type handling was also aggregated and condensed.
Thanks for the great framework guys, hope to contribute more in the future.