JsonSerializerExtensions.Parse<T> Method
.NET Framework 4
Deserializes the JSON to a .NET object.
Namespace: Microsoft.AspNet.SignalR.Json
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Parse(Of T) ( _
serializer As IJsonSerializer, _
json As String _
) As T
'Usage
Dim serializer As IJsonSerializer
Dim json As String
Dim returnValue As T
returnValue = serializer.Parse(json)
public static T Parse<T>(
this IJsonSerializer serializer,
string json
)
[ExtensionAttribute]
public:
generic<typename T>
static T Parse(
IJsonSerializer^ serializer,
String^ json
)
static member Parse :
serializer:IJsonSerializer *
json:string -> 'T
JScript does not support generic types and methods.
Type Parameters
- T
The Type of object being deserialized.
Parameters
- serializer
Type: Microsoft.AspNet.SignalR.Json.IJsonSerializer
The serializer.
- json
Type: System.String
The JSON to deserialize.
Return Value
Type: T
The deserialized object from the JSON string.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IJsonSerializer. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.100) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.100).