JsonObject.TryGetPropertyValue(String, JsonNode) 方法

定义

返回具有指定名称的属性的值。

public:
 bool TryGetPropertyValue(System::String ^ propertyName, [Runtime::InteropServices::Out] System::Text::Json::Nodes::JsonNode ^ % jsonNode);
public bool TryGetPropertyValue (string propertyName, out System.Text.Json.Nodes.JsonNode? jsonNode);
member this.TryGetPropertyValue : string * JsonNode -> bool
Public Function TryGetPropertyValue (propertyName As String, ByRef jsonNode As JsonNode) As Boolean

参数

propertyName
String

要返回的属性的名称。

jsonNode
JsonNode

具有指定名称的属性的 JSON 值。

返回

true 如果找到具有指定名称的属性,则为 ;否则为 false

适用于