Property | Type | Description |
---|
Method | Description | |
---|---|---|
Bind ( |
Performs the binding of the dynamic invoke member operation.
|
|
FallbackInvoke ( |
When overridden in the derived class, performs the binding of the dynamic invoke operation if the target dynamic object cannot bind. This method is called by the target when the target implements the invoke member operation as a sequence of get member, and invoke, to let the DynamicMetaObject request the binding of the invoke operation only. |
|
FallbackInvokeMember ( |
Performs the binding of the dynamic invoke member operation if the target dynamic object cannot bind.
|
|
FallbackInvokeMember ( |
When overridden in the derived class, performs the binding of the dynamic invoke member operation if the target dynamic object cannot bind.
|
Method | Description | |
---|---|---|
InvokeMemberBinder ( string name, bool ignoreCase, |
Initializes a new instance of the InvokeMemberBinder.
|
public final Bind ( |
||
target | The target of the dynamic invoke member operation. | |
args | An array of arguments of the dynamic invoke member operation. | |
return |
public abstract FallbackInvoke ( |
||
target | The target of the dynamic invoke operation. | |
args | The arguments of the dynamic invoke operation. | |
errorSuggestion | The binding result to use if binding fails, or null. | |
return |
public FallbackInvokeMember ( |
||
target | The target of the dynamic invoke member operation. | |
args | The arguments of the dynamic invoke member operation. | |
return |
public abstract FallbackInvokeMember ( |
||
target | The target of the dynamic invoke member operation. | |
args | The arguments of the dynamic invoke member operation. | |
errorSuggestion | The binding result to use if binding fails, or null. | |
return |
protected InvokeMemberBinder ( string name, bool ignoreCase, |
||
name | string | The name of the member to invoke. |
ignoreCase | bool | true if the name should be matched ignoring case; false otherwise. |
callInfo | The signature of the arguments at the call site. | |
return | System.Dynamic.Utils |