Compartir a través de


JsonObject.GetNamedString Método

Definición

Sobrecargas

GetNamedString(String)

Obtiene el valor string con el nombre especificado.

GetNamedString(String, String)

Obtiene el valor string con el nombre especificado o el valor predeterminado proporcionado si no se encuentra ese valor con nombre.

GetNamedString(String)

Obtiene el valor string con el nombre especificado.

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

Parámetros

name
String

Platform::String

winrt::hstring

Nombre.

Devoluciones

String

Platform::String

winrt::hstring

Valor string con el nombre especificado.

Comentarios

Este método siempre debe usarse con un bloque try/catch porque produce una excepción si el nombre encontrado no es un tipo string o no se encuentra el nombre.

Consulte también

Se aplica a

GetNamedString(String, String)

Obtiene el valor string con el nombre especificado o el valor predeterminado proporcionado si no se encuentra ese valor con nombre.

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

Parámetros

name
String

Platform::String

winrt::hstring

Nombre.

defaultValue
String

Platform::String

winrt::hstring

Valor predeterminado que se va a usar si no se encuentra la propiedad JSON.

Devoluciones

String

Platform::String

winrt::hstring

String con el nombre especificado, o si no se encontró este valor, se devuelve defaultValue.

Atributos

Consulte también

Se aplica a