Archetype.MetaObjects.DelegatingMetaObject.BindDeleteIndex C# (CSharp) Method

BindDeleteIndex() public method

Performs the binding of the dynamic delete index operation.
public BindDeleteIndex ( DeleteIndexBinder binder, DynamicMetaObject indexes ) : DynamicMetaObject
binder System.Dynamic.DeleteIndexBinder /// An instance of the that represents the details of the dynamic operation. ///
indexes System.Dynamic.DynamicMetaObject /// An array of instances - indexes for the delete index operation. ///
return System.Dynamic.DynamicMetaObject
        public override DynamicMetaObject BindDeleteIndex( DeleteIndexBinder binder, DynamicMetaObject[] indexes )
        {
            return ApplyBinding( meta => meta.BindDeleteIndex( binder, indexes ),
                                 ( target, errorSuggestion ) =>
                                 binder.FallbackDeleteIndex( target, indexes, errorSuggestion ) );
        }