9 references to DeleteIndexBinder
netstandard (1)
netstandard.cs (1)
764
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.
DeleteIndexBinder
))]
System.Core (1)
System.Core.cs (1)
69
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.
DeleteIndexBinder
))]
System.Dynamic.Runtime (1)
System.Dynamic.Runtime.cs (1)
18
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.
DeleteIndexBinder
))]
System.Linq.Expressions (6)
System\Dynamic\DeleteIndexBinder.cs (1)
17
/// Initializes a new instance of the <see cref="
DeleteIndexBinder
" />.
System\Dynamic\DynamicMetaObject.cs (2)
175
/// <param name="binder">An instance of the <see cref="
DeleteIndexBinder
"/> that represents the details of the dynamic operation.</param>
178
public virtual DynamicMetaObject BindDeleteIndex(
DeleteIndexBinder
binder, DynamicMetaObject[] indexes)
System\Dynamic\DynamicObject.cs (3)
197
public virtual bool TryDeleteIndex(
DeleteIndexBinder
binder, object[] indexes) => false;
418
public override DynamicMetaObject BindDeleteIndex(
DeleteIndexBinder
binder, DynamicMetaObject[] indexes)
428
(MetaDynamic @this,
DeleteIndexBinder
b, DynamicMetaObject? e) => b.FallbackDeleteIndex(@this, localIndexes, e)