JsonTypeInfo.CreateObject Property

Definition

Gets or sets a parameterless factory to be used on deserialization.

public:
 property Func<System::Object ^> ^ CreateObject { Func<System::Object ^> ^ get(); void set(Func<System::Object ^> ^ value); };
public Func<object>? CreateObject { get; set; }
member this.CreateObject : Func<obj> with get, set
Public Property CreateObject As Func(Of Object)

Property Value

Exceptions

The JsonTypeInfo instance has been locked for further modification.

-or-

A parameterless factory is not supported for the current metadata Kind.

Remarks

If set to null, any attempt to deserialize instances of the given type will result in an exception.

For contracts originating from DefaultJsonTypeInfoResolver or JsonSerializerContext, types with a single default constructor or default constructors annotated with JsonConstructorAttribute will be mapped to this delegate.

Applies to