Click or drag to resize
Json.NET

MetadataPropertyHandling Enumeration

 
Specifies metadata property handling options for the JsonSerializer.

Namespace:  Newtonsoft.Json
Assembly:  Newtonsoft.Json (in Newtonsoft.Json.dll) Version: 12.0.1+509643a8952ce731e0207710c429ad6e67dc43db
Syntax
C#
public enum MetadataPropertyHandling
Members
  Member nameValueDescription
Default0 Read metadata properties located at the start of a JSON object.
ReadAhead1 Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance.
Ignore2 Do not try to read metadata properties.
See Also