JsonReaderOptions.CommentHandling 属性

定义

获取或设置一个值,该值确定在读取 JSON 数据时,Utf8JsonReader 处理注释的方式。

public:
 property System::Text::Json::JsonCommentHandling CommentHandling { System::Text::Json::JsonCommentHandling get(); void set(System::Text::Json::JsonCommentHandling value); };
public System.Text.Json.JsonCommentHandling CommentHandling { get; set; }
member this.CommentHandling : System.Text.Json.JsonCommentHandling with get, set
Public Property CommentHandling As JsonCommentHandling

属性值

指示如何处理注释的枚举值之一。

例外

该属性被设置为不是 JsonCommentHandling 枚举的成员的值。

注解

默认情况下,如果遇到注释,读取器将 JsonException 引发 。

适用于