IJsonSerializer Interface
.NET Framework 4
Used to serialize and deserialize outgoing/incoming data.
Namespace: Microsoft.AspNet.SignalR.Json
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Syntax
'Declaration
Public Interface IJsonSerializer
'Usage
Dim instance As IJsonSerializer
public interface IJsonSerializer
public interface class IJsonSerializer
type IJsonSerializer = interface end
public interface IJsonSerializer
The IJsonSerializer type exposes the following members.
Methods
Name | Description | |
---|---|---|
Parse | Deserializes the JSON to a .NET object. | |
Serialize | Serializes the specified object to a TextWriter. |
Top
Extension Methods
Name | Description | |
---|---|---|
Parse<T> | Deserializes the JSON to a .NET object. (Defined by JsonSerializerExtensions.) | |
Stringify | Serializes the specified object to a JSON string. (Defined by JsonSerializerExtensions.) |
Top