JsonObject.GetNamedValue 方法

定义

重载

GetNamedValue(String, JsonValue)

获取指定的 JsonValue 值,如果未找到此类命名值,则获取提供的默认值。

GetNamedValue(String)

获取具有指定名称的 JsonValue 值。

GetNamedValue(String, JsonValue)

获取指定的 JsonValue 值,如果未找到此类命名值,则获取提供的默认值。

public:
 virtual JsonValue ^ GetNamedValue(Platform::String ^ name, JsonValue ^ defaultValue) = GetNamedValue;
/// [Windows.Foundation.Metadata.Overload("GetNamedValueOrDefault")]
JsonValue GetNamedValue(winrt::hstring const& name, JsonValue const& defaultValue);
[Windows.Foundation.Metadata.Overload("GetNamedValueOrDefault")]
public JsonValue GetNamedValue(string name, JsonValue defaultValue);
function getNamedValue(name, defaultValue)
Public Function GetNamedValue (name As String, defaultValue As JsonValue) As JsonValue

参数

name
String

Platform::String

winrt::hstring

名称。

defaultValue
JsonValue

找不到 JSON 属性时要使用的默认值。

返回

具有指定名称JsonValue;如果未找到此值,则返回 defaultValue

属性

另请参阅

适用于

GetNamedValue(String)

获取具有指定名称的 JsonValue 值。

public:
 virtual JsonValue ^ GetNamedValue(Platform::String ^ name) = GetNamedValue;
JsonValue GetNamedValue(winrt::hstring const& name);
public JsonValue GetNamedValue(string name);
function getNamedValue(name)
Public Function GetNamedValue (name As String) As JsonValue

参数

name
String

Platform::String

winrt::hstring

名称。

返回

具有指定名称的 JsonValue 值。

注解

此方法应始终与 try/catch 块一起使用,因为如果找到的名称不是 JsonValue 类型或找不到名称,则会引发异常。

另请参阅

适用于