C# Class Nancy.Serialization.ProtoBuf.BodyDeserializers.ProtobufNetBodyDeserializer

Deserializes request bodies in ProtoBuffer format
Inheritance: IBodyDeserializer
Show file Open project: NancyFx/Nancy.Serialization.ProtBuf Class Usage Examples

Public Methods

Method Description
CanDeserialize ( MediaRange mediaRange, BindingContext context ) : bool

Whether the deserializer can deserialize the content type

Deserialize ( MediaRange mediaRange, Stream bodyStream, BindingContext context ) : object

Deserialize the request body to a model

Private Methods

Method Description
IsProtoBufType ( MediaRange mediaRange ) : bool

Attempts to detect if the content type is ProtoBuffer. Supports: application/x-protobuf Matches are case insentitive to try and be as "accepting" as possible.

Method Details

CanDeserialize() public method

Whether the deserializer can deserialize the content type
public CanDeserialize ( MediaRange mediaRange, BindingContext context ) : bool
mediaRange MediaRange Content type to deserialize
context BindingContext Current .
return bool

Deserialize() public method

Deserialize the request body to a model
public Deserialize ( MediaRange mediaRange, Stream bodyStream, BindingContext context ) : object
mediaRange MediaRange Content type to deserialize
bodyStream Stream Request body stream
context BindingContext Current context
return object