PayloadSerializer Class

Definition

Provides the serialization for a specified convention.

public abstract class PayloadSerializer
type PayloadSerializer = class
Public MustInherit Class PayloadSerializer
Inheritance
PayloadSerializer
Derived

Remarks

The serializer is responsible for converting all objects into the correct format for the PayloadConvention that uses it.

By default there are implementions the NewtonsoftJsonPayloadSerializer class that uses Newtonsoft.Json.JsonConvert to handle the serialization for the DefaultPayloadConvention class.

Constructors

PayloadSerializer()

Properties

ContentType

Used to specify what type of content will be in the payload.

Methods

ConvertFromJsonObject<T>(Object)

Converts the JSON object using the serializer.

DeserializeToType<T>(String)

Convert the serialized string to an object.

SerializeToString(Object)

Serialize the specified object to a string.

Applies to