PayloadSerializer Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Azure SDK for .NET