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

Represents the dynamic delete index 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 delete index operation.

FallbackDeleteIndex ( DynamicMetaObject target, DynamicMetaObject indexes ) : DynamicMetaObject

Performs the binding of the dynamic delete index operation if the target dynamic object cannot bind.

FallbackDeleteIndex ( DynamicMetaObject target, DynamicMetaObject indexes, DynamicMetaObject errorSuggestion ) : DynamicMetaObject

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

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

Метод Описание
DeleteIndexBinder ( CallInfo callInfo ) : System.Dynamic.Utils

Initializes a new instance of the DeleteIndexBinder.

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

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

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

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

Initializes a new instance of the DeleteIndexBinder.
protected DeleteIndexBinder ( CallInfo callInfo ) : System.Dynamic.Utils
callInfo CallInfo The signature of the arguments at the call site.
Результат System.Dynamic.Utils

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

Performs the binding of the dynamic delete index operation if the target dynamic object cannot bind.
public FallbackDeleteIndex ( DynamicMetaObject target, DynamicMetaObject indexes ) : DynamicMetaObject
target DynamicMetaObject The target of the dynamic delete index operation.
indexes DynamicMetaObject The arguments of the dynamic delete index operation.
Результат DynamicMetaObject

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

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