JsonCreationConverter<T>.Create(Type, JObject) Method
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.
Create an instance of objectType, based on properties in the JSON object
protected abstract T Create (Type objectType, Newtonsoft.Json.Linq.JObject jObject);
abstract member Create : Type * Newtonsoft.Json.Linq.JObject -> 'T
Protected MustOverride Function Create (objectType As Type, jObject As JObject) As T
Parameters
- objectType
- Type
Type of the object.
- jObject
- Newtonsoft.Json.Linq.JObject
Contents of JSON object that will be deserialized.
Returns
T
Returns object of type.