다음을 통해 공유


JsonObject.IDictionary<String,JsonNode>.TryGetValue 메서드

정의

지정된 속성 이름과 연결된 값을 가져옵니다.

 virtual bool System.Collections.Generic.IDictionary<System.String,System.Text.Json.Nodes.JsonNode>.TryGetValue(System::String ^ propertyName, [Runtime::InteropServices::Out] System::Text::Json::Nodes::JsonNode ^ % jsonNode) = System::Collections::Generic::IDictionary<System::String ^, System::Text::Json::Nodes::JsonNode ^>::TryGetValue;
bool IDictionary<string,JsonNode>.TryGetValue (string propertyName, out System.Text.Json.Nodes.JsonNode jsonNode);
abstract member System.Collections.Generic.IDictionary<System.String,System.Text.Json.Nodes.JsonNode>.TryGetValue : string * JsonNode -> bool
override this.System.Collections.Generic.IDictionary<System.String,System.Text.Json.Nodes.JsonNode>.TryGetValue : string * JsonNode -> bool
Function TryGetValue (propertyName As String, ByRef jsonNode As JsonNode) As Boolean Implements IDictionary(Of String, JsonNode).TryGetValue

매개 변수

propertyName
String

가져올 값의 속성 이름입니다.

jsonNode
JsonNode

이 메서드가 반환될 때 속성 이름이 발견되면 지정된 속성 이름과 연결된 값이 포함됩니다. 그렇지 않으면 . null

반환

Boolean

trueJsonObject 지정된 속성 이름을 가진 요소가 포함되어 있으면 이고, false그렇지 않으면 .입니다.

예외

propertyName이(가) null인 경우

적용 대상