JsonCommentHandling 枚举

定义

定义 Utf8JsonReader 结构处理注释的方式。

public enum class JsonCommentHandling
public enum JsonCommentHandling
type JsonCommentHandling = 
Public Enum JsonCommentHandling
继承
JsonCommentHandling

字段

Allow 2

允许在 JSON 输入中使用注释,并将其视为有效标记。 读取项时,调用方可以访问注释值。

Disallow 0

不允许在 JSON 输入中使用注释。 若找到注释,可将其视为 JSON,并且引发 JsonException。 这是默认值。

Skip 1

允许在 JSON 输入中使用注释并忽略它们。 Utf8JsonReader 的行为方式假设不存在注释。

注解

有关详细信息,请参阅 如何使用 System.Text.Json 允许某些类型的无效 JSON

适用于