DefaultJsonTypeInfoResolver.Modifiers Property

Definition

Gets a list of user-defined callbacks that can be used to modify the initial contract.

public:
 property System::Collections::Generic::IList<Action<System::Text::Json::Serialization::Metadata::JsonTypeInfo ^> ^> ^ Modifiers { System::Collections::Generic::IList<Action<System::Text::Json::Serialization::Metadata::JsonTypeInfo ^> ^> ^ get(); };
public System.Collections.Generic.IList<Action<System.Text.Json.Serialization.Metadata.JsonTypeInfo>> Modifiers { get; }
member this.Modifiers : System.Collections.Generic.IList<Action<System.Text.Json.Serialization.Metadata.JsonTypeInfo>>
Public ReadOnly Property Modifiers As IList(Of Action(Of JsonTypeInfo))

Property Value

Remarks

The modifier list will be rendered immutable after the first GetTypeInfo(Type, JsonSerializerOptions) invocation.

Modifier callbacks are called consecutively in the order in which they're specified in the list.

Applies to