JsonSerializerOptions.ReadCommentHandling 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
deserialization 중에 주석을 처리하는 방법을 정의하는 값을 가져오거나 설정합니다.
public:
property System::Text::Json::JsonCommentHandling ReadCommentHandling { System::Text::Json::JsonCommentHandling get(); void set(System::Text::Json::JsonCommentHandling value); };
public System.Text.Json.JsonCommentHandling ReadCommentHandling { get; set; }
member this.ReadCommentHandling : System.Text.Json.JsonCommentHandling with get, set
Public Property ReadCommentHandling As JsonCommentHandling
속성 값
주석을 허용, 허용 또는 건너뛰는지 여부를 나타내는 값입니다.
예외
이 속성은 serialization 또는 deserialization이 발생한 후에 설정되었습니다.
주석 처리 열거형이 지원되지 않거나 JsonCommentHandling 열거형 범위에 포함되지 않는 값으로 설정되어 있습니다.
설명
기본적으로 는 JsonException deserialization 중에 주석이 발견되면 throw됩니다.
자세한 내용은 System.Text.Json을 사용하여 일부 종류의 잘못된 JSON을 허용하는 방법을 참조하세요.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET