RuntimeOps.ExpandoTryGetValue 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.
Attenzione
do not use this method
Ottiene il valore di un elemento in un oggetto Expando.
Questa API supporta l'infrastruttura del prodotto e non è previsto che venga usata direttamente dal codice.
public:
static bool ExpandoTryGetValue(System::Dynamic::ExpandoObject ^ expando, System::Object ^ indexClass, int index, System::String ^ name, bool ignoreCase, [Runtime::InteropServices::Out] System::Object ^ % value);
[System.Obsolete("do not use this method", true)]
public static bool ExpandoTryGetValue (System.Dynamic.ExpandoObject expando, object indexClass, int index, string name, bool ignoreCase, out object value);
[<System.Obsolete("do not use this method", true)>]
static member ExpandoTryGetValue : System.Dynamic.ExpandoObject * obj * int * string * bool * obj -> bool
Public Shared Function ExpandoTryGetValue (expando As ExpandoObject, indexClass As Object, index As Integer, name As String, ignoreCase As Boolean, ByRef value As Object) As Boolean
Parametri
- expando
- ExpandoObject
Oggetto Expando.
- indexClass
- Object
Classe dell'oggetto Expando.
- index
- Int32
Indice del membro.
- name
- String
Nome del membro.
- ignoreCase
- Boolean
Restituisce true se nella corrispondenza del nome deve essere ignorata la distinzione tra maiuscole e minuscole; in caso contrario, false.
- value
- Object
Parametro out che contiene il valore del membro.
Restituisce
true
se il membro esiste nell'oggetto Expando; in caso contrario, false
.
- Attributi