JsonReaderOptions.AllowTrailingCommas 属性

定义

获取或设置一个值,该值定义要读取的 JSON 有效负载中是否允许(和忽略)对象或数组中 JSON 值的列表末尾多余的逗号。

public:
 property bool AllowTrailingCommas { bool get(); void set(bool value); };
public bool AllowTrailingCommas { get; set; }
member this.AllowTrailingCommas : bool with get, set
Public Property AllowTrailingCommas As Boolean

属性值

Boolean

true 如果允许额外的逗号,则为否则,为 false.

注解

默认情况下,此属性设置为 false,如果遇到尾随逗号,则会引发 a JsonException

适用于