Compartir a través de


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

Name Description
PayloadSerializer()

Properties

Name Description
ContentType

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

Methods

Name Description
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