JsonObject.GetNamedString Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
GetNamedString(String) |
Ottiene il valore String con il nome specificato. |
GetNamedString(String, String) |
Ottiene il valore String con il nome specificato o il valore predefinito specificato se non viene trovato alcun valore denominato di questo tipo. |
GetNamedString(String)
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
Parametri
- name
-
String
Platform::String
winrt::hstring
Nome.
Restituisce
Valore String con il nome specificato.
Commenti
Questo metodo deve essere sempre usato con un blocco try/catch perché genera un'eccezione se il nome trovato non è un tipo String o il nome non viene trovato.
Vedi anche
Si applica a
GetNamedString(String, String)
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
Parametri
- name
-
String
Platform::String
winrt::hstring
Nome.
- defaultValue
-
String
Platform::String
winrt::hstring
Valore predefinito da usare se la proprietà JSON non viene trovata.
Restituisce
Stringa con il nome specificato o se questo valore non è stato trovato, viene restituito il valore defaultValue.
- Attributi