C# Класс System.Dynamic.InvokeMemberBinder

Represents the invoke member dynamic operation at the call site, providing the binding semantic and the details about the operation.
Наследование: DynamicMetaObjectBinder
Показать файл Открыть проект Примеры использования класса

Private Properties

Свойство Тип Описание

Открытые методы

Метод Описание
Bind ( DynamicMetaObject target, DynamicMetaObject args ) : DynamicMetaObject

Performs the binding of the dynamic invoke member operation.

FallbackInvoke ( DynamicMetaObject target, DynamicMetaObject args, DynamicMetaObject errorSuggestion ) : DynamicMetaObject

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 ( DynamicMetaObject target, DynamicMetaObject args ) : DynamicMetaObject

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

FallbackInvokeMember ( DynamicMetaObject target, DynamicMetaObject args, DynamicMetaObject errorSuggestion ) : DynamicMetaObject

When overridden in the derived class, performs the binding of the dynamic invoke member operation if the target dynamic object cannot bind.

Защищенные методы

Метод Описание
InvokeMemberBinder ( string name, bool ignoreCase, CallInfo callInfo ) : System.Dynamic.Utils

Initializes a new instance of the InvokeMemberBinder.

Описание методов

Bind() публичный закрытый Метод

Performs the binding of the dynamic invoke member operation.
public final Bind ( DynamicMetaObject target, DynamicMetaObject args ) : DynamicMetaObject
target DynamicMetaObject The target of the dynamic invoke member operation.
args DynamicMetaObject An array of arguments of the dynamic invoke member operation.
Результат DynamicMetaObject

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.
public abstract FallbackInvoke ( DynamicMetaObject target, DynamicMetaObject args, DynamicMetaObject errorSuggestion ) : DynamicMetaObject
target DynamicMetaObject The target of the dynamic invoke operation.
args DynamicMetaObject The arguments of the dynamic invoke operation.
errorSuggestion DynamicMetaObject The binding result to use if binding fails, or null.
Результат DynamicMetaObject

FallbackInvokeMember() публичный Метод

Performs the binding of the dynamic invoke member operation if the target dynamic object cannot bind.
public FallbackInvokeMember ( DynamicMetaObject target, DynamicMetaObject args ) : DynamicMetaObject
target DynamicMetaObject The target of the dynamic invoke member operation.
args DynamicMetaObject The arguments of the dynamic invoke member operation.
Результат DynamicMetaObject

FallbackInvokeMember() публичный абстрактный Метод

When overridden in the derived class, performs the binding of the dynamic invoke member operation if the target dynamic object cannot bind.
public abstract FallbackInvokeMember ( DynamicMetaObject target, DynamicMetaObject args, DynamicMetaObject errorSuggestion ) : DynamicMetaObject
target DynamicMetaObject The target of the dynamic invoke member operation.
args DynamicMetaObject The arguments of the dynamic invoke member operation.
errorSuggestion DynamicMetaObject The binding result to use if binding fails, or null.
Результат DynamicMetaObject

InvokeMemberBinder() защищенный Метод

Initializes a new instance of the InvokeMemberBinder.
protected InvokeMemberBinder ( string name, bool ignoreCase, CallInfo callInfo ) : System.Dynamic.Utils
name string The name of the member to invoke.
ignoreCase bool true if the name should be matched ignoring case; false otherwise.
callInfo CallInfo The signature of the arguments at the call site.
Результат System.Dynamic.Utils