Creates an object from a JToken.
public static object? FromJToken(JToken? json, Type type)
parameter | description |
---|---|
json | The JToken. |
type | The type. |
The object.
Creates an object from a JToken.
public static object? FromJToken(JToken? json, Type type, JsonSettings? settings)
parameter | description |
---|---|
json | The JToken. |
type | The type. |
settings | The settings. |
The object.
Creates an object from a JToken.
public static T FromJToken<T>(JToken? json)
parameter | description |
---|---|
T | The type of object to create. |
json | The JToken. |
The object.
Creates an object from a JToken.
public static T FromJToken<T>(JToken? json, JsonSettings? settings)
parameter | description |
---|---|
T | The type of object to create. |
json | The JToken. |
settings | The settings. |
The object.