ISerializer Interface
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.
An interface for serializing and deserializing JSON objects.
public interface ISerializer
type ISerializer = interface
Public Interface ISerializer
- Derived
Methods
DeserializeObject<T>(Stream) |
Deserializes the stream to an object of the specified type. |
DeserializeObject<T>(String) |
Deserializes the JSON string to an object of the specified type. |
SerializeObject(Object) |
Serializes the specified object into a JSON string. |
Extension Methods
SerializeAsJsonContent(ISerializer, Object) |
Serialize an object into a HttpContent object |