Bearbeiten

Freigeben über


JsonPropertyInfo.CustomConverter Property

Definition

Gets or sets a custom converter override for the current property.

public:
 property System::Text::Json::Serialization::JsonConverter ^ CustomConverter { System::Text::Json::Serialization::JsonConverter ^ get(); void set(System::Text::Json::Serialization::JsonConverter ^ value); };
public System.Text.Json.Serialization.JsonConverter? CustomConverter { get; set; }
member this.CustomConverter : System.Text.Json.Serialization.JsonConverter with get, set
Public Property CustomConverter As JsonConverter

Property Value

Exceptions

The JsonPropertyInfo instance has been locked for further modification.

Remarks

It is possible to use JsonConverterFactory instances with this property.

For contracts originating from DefaultJsonTypeInfoResolver, the value of CustomConverter will be mapped from JsonConverterAttribute annotations.

Applies to