JsonSerializerOptions.MaxDepth 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置序列化或反序列化 JSON 时允许的最大深度,默认值 0 表示最大深度为 64。
public:
property int MaxDepth { int get(); void set(int value); };
public int MaxDepth { get; set; }
member this.MaxDepth : int with get, set
Public Property MaxDepth As Integer
属性值
序列化或反序列化 JSON 时允许的最大深度。
例外
此属性在序列化或反序列化发生后设置。
最大深度设置为负值。
注解
走过这个深度会引发一个 JsonException。