Serializer members
Provides support to serialize objects to JavaScript Object Notation (JSON).
The Serializer type exposes the following members.
Constructors
Name | Description | |
---|---|---|
Serializer() | Default constructor. | |
Serializer(IDictionary<Type, JsonEncoder>) | Creates a serializer object, initialized with a collection of encoder delegates and associated types. | |
Serializer(IDictionary<Type, JsonEncoder>, Serializer) | Creates a serializer object, deriving from a base serializer object, and initialized with a collection of encoder delegates and associated types. |
Top
Properties
Name | Description | |
---|---|---|
BaseSerializer | Get or set the base serializer property. | |
Shared | Gets a reference to a shared serializer object. |
Top
Methods
Name | Description | |
---|---|---|
Equals | (Inherited from Object.) | |
Finalize | (Inherited from Object.) | |
GetEncoderForType | Get the encoder for a particular type. | |
GetHashCode | (Inherited from Object.) | |
GetType | (Inherited from Object.) | |
MemberwiseClone | (Inherited from Object.) | |
SerializeToJson | Serializes an object to JavaScript Object Notation (JSON). | |
ToString | (Inherited from Object.) |
Top