JsonSerializerOptions.MaxDepth 属性

定义

获取或设置序列化或反序列化 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

属性值

Int32

序列化或反序列化 JSON 时允许的最大深度。

例外

此属性在序列化或反序列化发生后设置。

最大深度设置为负值。

注解

走过这个深度会引发一个 JsonException

适用于