Serializer 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.
An ISerializer implementation using the JSON.NET serializer.
public class Serializer : Microsoft.Graph.ISerializer
type Serializer = class
interface ISerializer
Public Class Serializer
Implements ISerializer
- Inheritance
-
Serializer
- Implements
Constructors
Serializer() |
Constructor for the serializer with defaults for the JsonSerializer settings. |
Serializer(JsonSerializerSettings) |
Constructor for the serializer. |
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 |