JsonDocument.TryParseValue(Utf8JsonReader, JsonDocument) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
제공된 판독기에서 단일 JSON 값(개체 또는 배열 포함)을 구문 분석하려고 합니다.
public:
static bool TryParseValue(System::Text::Json::Utf8JsonReader % reader, [Runtime::InteropServices::Out] System::Text::Json::JsonDocument ^ % document);
public static bool TryParseValue (ref System.Text.Json.Utf8JsonReader reader, out System.Text.Json.JsonDocument? document);
public static bool TryParseValue (ref System.Text.Json.Utf8JsonReader reader, out System.Text.Json.JsonDocument document);
static member TryParseValue : Utf8JsonReader * JsonDocument -> bool
Public Shared Function TryParseValue (ByRef reader As Utf8JsonReader, ByRef document As JsonDocument) As Boolean
매개 변수
- reader
- Utf8JsonReader
읽을 판독기입니다.
- document
- JsonDocument
메서드가 반환되면 구문 분석된 문서가 포함됩니다.
반환
값을 읽고 JsonDocument로 구문 분석한 경우 true
이고, 구문 분석하는 동안 판독기에 데이터가 부족한 경우 false
입니다. 다른 모든 상황에서는 예외가 발생합니다.
예외
판독기에서 값을 읽을 수 없습니다.
설명
TokenType is 또는 JsonTokenType.None속성인 reader
JsonTokenType.PropertyName 경우 판독기는 한 번의 호출로 진행하여 Utf8JsonReader.Read() 값의 시작을 확인합니다.
이 메서드 reader
가 완료되면 JSON 값의 최종 토큰에 배치됩니다. 예외가 throw되거나 false
반환되면 판독기는 메서드가 호출되었을 때의 상태로 다시 설정됩니다.
이 메서드는 판독기가 작업한 데이터의 복사본을 만들므로 이 메서드의 반환 이후에도 데이터 무결성을 유지하기 위한 호출자 요구 사항이 없습니다.