JsonPropertyInfo.IsRequired Property
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.
Gets or sets a value that indicates whether the current property is required for deserialization to be successful.
public:
property bool IsRequired { bool get(); void set(bool value); };
public bool IsRequired { get; set; }
member this.IsRequired : bool with get, set
Public Property IsRequired As Boolean
Property Value
Exceptions
The JsonPropertyInfo instance has been locked for further modification.
Remarks
For contracts that originate from DefaultJsonTypeInfoResolver or JsonSerializerContext, the value of this property is mapped from JsonRequiredAttribute annotations.
For contracts that use DefaultJsonTypeInfoResolver, the value of this property is also mapped from properties that have the required
modifier, unless deserialization uses a constructor that populates all required properties and has SetsRequiredMembersAttribute.
The required
keyword is currently not supported in JsonSerializerContext contracts.