DynamicObject.TryGetMember(GetMemberBinder, Object) 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.
Fornisce l'implementazione per operazioni che ottengono valori dei membri. Le classi derivate dalla classe DynamicObject possono eseguire l'override di questo metodo per specificare il comportamento dinamico per operazioni quale l'acquisizione di un valore per una proprietà.
public:
virtual bool TryGetMember(System::Dynamic::GetMemberBinder ^ binder, [Runtime::InteropServices::Out] System::Object ^ % result);
public virtual bool TryGetMember (System.Dynamic.GetMemberBinder binder, out object result);
public virtual bool TryGetMember (System.Dynamic.GetMemberBinder binder, out object? result);
abstract member TryGetMember : System.Dynamic.GetMemberBinder * obj -> bool
override this.TryGetMember : System.Dynamic.GetMemberBinder * obj -> bool
Public Overridable Function TryGetMember (binder As GetMemberBinder, ByRef result As Object) As Boolean
Parametri
- binder
- GetMemberBinder
Fornisce informazioni sull'oggetto che ha chiamato l'operazione dinamica. La binder.Name
proprietà fornisce il nome del membro in cui viene eseguita l'operazione dinamica. Ad esempio, per l'istruzione , dove sampleObject
è un'istanza Console.WriteLine(sampleObject.SampleProperty)
della classe derivata dalla DynamicObject classe , binder.Name
restituisce "SampleProperty". La binder.IgnoreCase
proprietà specifica se il nome del membro fa distinzione tra maiuscole e minuscole.
- result
- Object
Risultato dell'operazione get. Ad esempio, se il metodo viene chiamato per una proprietà, è possibile assegnare il valore della proprietà a result
.
Restituisce
true
se l'operazione riesce; in caso contrario, false
. Se questo metodo restituisce false
, il comportamento viene determinato dal gestore di associazione di runtime del linguaggio. Nella maggior parte dei casi viene generata eccezione di runtime.
Esempio
Si supponga di voler fornire una sintassi alternativa per l'accesso ai valori in un dizionario, in modo che invece di scrivere sampleDictionary["Text"] = "Sample text"
(sampleDictionary("Text") = "Sample text"
in Visual Basic), è possibile scrivere sampleDictionary.Text = "Sample text"
. Inoltre, questa sintassi deve essere senza distinzione tra maiuscole e minuscole, in modo che sampleDictionary.Text
sia equivalente a sampleDictionary.text
.
Nell'esempio di codice seguente viene illustrata la DynamicDictionary
classe derivata dalla DynamicObject classe . La DynamicDictionary
classe contiene un oggetto del Dictionary<string, object>
tipo (Dictionary(Of String, Object)
in Visual Basic) per archiviare le coppie chiave-valore ed esegue l'override dei TrySetMember metodi e TryGetMember per supportare la nuova sintassi. Fornisce anche una Count
proprietà che mostra il numero di proprietà dinamiche contenute nel dizionario.
// The class derived from DynamicObject.
public class DynamicDictionary : DynamicObject
{
// The inner dictionary.
Dictionary<string, object> dictionary
= new Dictionary<string, object>();
// This property returns the number of elements
// in the inner dictionary.
public int Count
{
get
{
return dictionary.Count;
}
}
// If you try to get a value of a property
// not defined in the class, this method is called.
public override bool TryGetMember(
GetMemberBinder binder, out object result)
{
// Converting the property name to lowercase
// so that property names become case-insensitive.
string name = binder.Name.ToLower();
// If the property name is found in a dictionary,
// set the result parameter to the property value and return true.
// Otherwise, return false.
return dictionary.TryGetValue(name, out result);
}
// If you try to set a value of a property that is
// not defined in the class, this method is called.
public override bool TrySetMember(
SetMemberBinder binder, object value)
{
// Converting the property name to lowercase
// so that property names become case-insensitive.
dictionary[binder.Name.ToLower()] = value;
// You can always add a value to a dictionary,
// so this method always returns true.
return true;
}
}
class Program
{
static void Main(string[] args)
{
// Creating a dynamic dictionary.
dynamic person = new DynamicDictionary();
// Adding new dynamic properties.
// The TrySetMember method is called.
person.FirstName = "Ellen";
person.LastName = "Adams";
// Getting values of the dynamic properties.
// The TryGetMember method is called.
// Note that property names are case-insensitive.
Console.WriteLine(person.firstname + " " + person.lastname);
// Getting the value of the Count property.
// The TryGetMember is not called,
// because the property is defined in the class.
Console.WriteLine(
"Number of dynamic properties:" + person.Count);
// The following statement throws an exception at run time.
// There is no "address" property,
// so the TryGetMember method returns false and this causes a
// RuntimeBinderException.
// Console.WriteLine(person.address);
}
}
// This example has the following output:
// Ellen Adams
// Number of dynamic properties: 2
' The class derived from DynamicObject.
Public Class DynamicDictionary
Inherits DynamicObject
' The inner dictionary.
Dim dictionary As New Dictionary(Of String, Object)
' This property returns the number of elements
' in the inner dictionary.
ReadOnly Property Count As Integer
Get
Return dictionary.Count
End Get
End Property
' If you try to get a value of a property that is
' not defined in the class, this method is called.
Public Overrides Function TryGetMember(
ByVal binder As System.Dynamic.GetMemberBinder,
ByRef result As Object) As Boolean
' Converting the property name to lowercase
' so that property names become case-insensitive.
Dim name As String = binder.Name.ToLower()
' If the property name is found in a dictionary,
' set the result parameter to the property value and return true.
' Otherwise, return false.
Return dictionary.TryGetValue(name, result)
End Function
Public Overrides Function TrySetMember(
ByVal binder As System.Dynamic.SetMemberBinder,
ByVal value As Object) As Boolean
' Converting the property name to lowercase
' so that property names become case-insensitive.
dictionary(binder.Name.ToLower()) = value
' You can always add a value to a dictionary,
' so this method always returns true.
Return True
End Function
End Class
Sub Main()
' Creating a dynamic dictionary.
Dim person As Object = New DynamicDictionary()
' Adding new dynamic properties.
' The TrySetMember method is called.
person.FirstName = "Ellen"
person.LastName = "Adams"
' Getting values of the dynamic properties.
' The TryGetMember method is called.
' Note that property names are now case-insensitive,
' although they are case-sensitive in C#.
Console.WriteLine(person.firstname & " " & person.lastname)
' Getting the value of the Count property.
' The TryGetMember is not called,
' because the property is defined in the class.
Console.WriteLine("Number of dynamic properties:" & person.Count)
' The following statement throws an exception at run time.
' There is no "address" property,
' so the TryGetMember method returns false and this causes
' a MissingMemberException.
' Console.WriteLine(person.address)
End Sub
' This examples has the following output:
' Ellen Adams
' Number of dynamic properties: 2
Commenti
Le classi derivate dalla classe possono eseguire l'override DynamicObject di questo metodo per specificare come devono essere eseguite le operazioni che ottengono valori membro per un oggetto dinamico. Quando il metodo non viene sottoposto a override, il binder di runtime del linguaggio determina il comportamento. Nella maggior parte dei casi viene generata eccezione di runtime.
Questo metodo viene chiamato quando sono presenti istruzioni come Console.WriteLine(sampleObject.SampleProperty)
, dove sampleObject
è un'istanza della classe derivata dalla DynamicObject classe .
È anche possibile aggiungere membri personalizzati alle classi derivate dalla DynamicObject
classe . Se la classe definisce le proprietà ed esegue anche l'override del TrySetMember metodo , il runtime del linguaggio dinamico (DLR) usa innanzitutto il gestore di associazione del linguaggio per cercare una definizione statica di una proprietà nella classe . Se tale proprietà non è presente, DLR chiama il TrySetMember metodo .