C# Class System.Dynamic.SetMemberBinder

Inheritance: DynamicMetaObjectBinder
Show file Open project: dotnet/corefx Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method 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.

Protected Methods

Method Description
SetMemberBinder ( string name, bool ignoreCase ) : System.Dynamic.Utils

Initializes a new instance of the SetMemberBinder.

Method Details

Bind() public final method

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.
return DynamicMetaObject

FallbackSetMember() public method

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.
return DynamicMetaObject

FallbackSetMember() public abstract method

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.
return DynamicMetaObject

SetMemberBinder() protected method

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.
return System.Dynamic.Utils