DeleteIndexBinder.FallbackDeleteIndex Method

Definition

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

Overloads

FallbackDeleteIndex(DynamicMetaObject, DynamicMetaObject[])

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

FallbackDeleteIndex(DynamicMetaObject, DynamicMetaObject[], DynamicMetaObject)

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

FallbackDeleteIndex(DynamicMetaObject, DynamicMetaObject[])

Source:
DeleteIndexBinder.cs
Source:
DeleteIndexBinder.cs
Source:
DeleteIndexBinder.cs

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

C#
public System.Dynamic.DynamicMetaObject FallbackDeleteIndex(System.Dynamic.DynamicMetaObject target, System.Dynamic.DynamicMetaObject[] indexes);

Parameters

target
DynamicMetaObject

The target of the dynamic delete index operation.

indexes
DynamicMetaObject[]

The arguments of the dynamic delete index operation.

Returns

The DynamicMetaObject representing the result of the binding.

Applies to

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1
UWP 10.0

FallbackDeleteIndex(DynamicMetaObject, DynamicMetaObject[], DynamicMetaObject)

Source:
DeleteIndexBinder.cs
Source:
DeleteIndexBinder.cs
Source:
DeleteIndexBinder.cs

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

C#
public abstract System.Dynamic.DynamicMetaObject FallbackDeleteIndex(System.Dynamic.DynamicMetaObject target, System.Dynamic.DynamicMetaObject[] indexes, System.Dynamic.DynamicMetaObject errorSuggestion);
C#
public abstract System.Dynamic.DynamicMetaObject FallbackDeleteIndex(System.Dynamic.DynamicMetaObject target, System.Dynamic.DynamicMetaObject[] indexes, System.Dynamic.DynamicMetaObject? errorSuggestion);

Parameters

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.

Returns

The DynamicMetaObject representing the result of the binding.

Applies to

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1
UWP 10.0