C# Class System.Dynamic.SetMemberBinder

Inheritance: DynamicMetaObjectBinder
Afficher le fichier Open project: dotnet/corefx Class Usage Examples

Private Properties

Свойство Type Description

Méthodes publiques

Méthode Description
Bind ( DynamicMetaObject target, DynamicMetaObject args ) : DynamicMetaObject

Performs the binding of the dynamic set member operation.

FallbackSetMember ( DynamicMetaObject target, DynamicMetaObject value ) : DynamicMetaObject

Performs the binding of the dynamic set member operation if the target dynamic object cannot bind.

FallbackSetMember ( DynamicMetaObject target, DynamicMetaObject value, DynamicMetaObject errorSuggestion ) : DynamicMetaObject

Performs the binding of the dynamic set member operation if the target dynamic object cannot bind.

Méthodes protégées

Méthode Description
SetMemberBinder ( string name, bool ignoreCase ) : System.Dynamic.Utils

Initializes a new instance of the SetMemberBinder.

Method Details

Bind() public final méthode

Performs the binding of the dynamic set member operation.
public final Bind ( DynamicMetaObject target, DynamicMetaObject args ) : DynamicMetaObject
target DynamicMetaObject The target of the dynamic set member operation.
args DynamicMetaObject An array of arguments of the dynamic set member operation.
Résultat DynamicMetaObject

FallbackSetMember() public méthode

Performs the binding of the dynamic set member operation if the target dynamic object cannot bind.
public FallbackSetMember ( DynamicMetaObject target, DynamicMetaObject value ) : DynamicMetaObject
target DynamicMetaObject The target of the dynamic set member operation.
value DynamicMetaObject The value to set to the member.
Résultat DynamicMetaObject

FallbackSetMember() public abstract méthode

Performs the binding of the dynamic set member operation if the target dynamic object cannot bind.
public abstract FallbackSetMember ( DynamicMetaObject target, DynamicMetaObject value, DynamicMetaObject errorSuggestion ) : DynamicMetaObject
target DynamicMetaObject The target of the dynamic set member operation.
value DynamicMetaObject The value to set to the member.
errorSuggestion DynamicMetaObject The binding result to use if binding fails, or null.
Résultat DynamicMetaObject

SetMemberBinder() protected méthode

Initializes a new instance of the SetMemberBinder.
protected SetMemberBinder ( string name, bool ignoreCase ) : System.Dynamic.Utils
name string The name of the member to get.
ignoreCase bool true if the name should be matched ignoring case; false otherwise.
Résultat System.Dynamic.Utils