JsonCommentHandling Enum

Definition

Defines how the Utf8JsonReader struct handles comments.

public enum class JsonCommentHandling
public enum JsonCommentHandling
type JsonCommentHandling = 
Public Enum JsonCommentHandling
Inheritance
JsonCommentHandling

Fields

Allow 2

Allows comments within the JSON input and treats them as valid tokens. While reading, the caller can access the comment values.

Disallow 0

Doesn't allow comments within the JSON input. Comments are treated as invalid JSON if found, and a JsonException is thrown. This is the default value.

Skip 1

Allows comments within the JSON input and ignores them. The Utf8JsonReader behaves as if no comments are present.

Remarks

For more information, see How to allow some kinds of invalid JSON with System.Text.Json.

Applies to