C# Class System.Dynamic.DeleteMemberBinder

Represents the dynamic delete member operation at the call site, providing the binding semantic and the details about the operation.
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 delete member operation.

FallbackDeleteMember ( DynamicMetaObject target ) : DynamicMetaObject

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

FallbackDeleteMember ( DynamicMetaObject target, DynamicMetaObject errorSuggestion ) : DynamicMetaObject

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

Méthodes protégées

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

Initializes a new instance of the DeleteMemberBinder.

Method Details

Bind() public final méthode

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

DeleteMemberBinder() protected méthode

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

FallbackDeleteMember() public méthode

Performs the binding of the dynamic delete member operation if the target dynamic object cannot bind.
public FallbackDeleteMember ( DynamicMetaObject target ) : DynamicMetaObject
target DynamicMetaObject The target of the dynamic delete member operation.
Résultat DynamicMetaObject

FallbackDeleteMember() public abstract méthode

When overridden in the derived class, performs the binding of the dynamic delete member operation if the target dynamic object cannot bind.
public abstract FallbackDeleteMember ( DynamicMetaObject target, DynamicMetaObject errorSuggestion ) : DynamicMetaObject
target DynamicMetaObject The target of the dynamic delete member operation.
errorSuggestion DynamicMetaObject The binding result to use if binding fails, or null.
Résultat DynamicMetaObject