Archetype.MetaObjects.DelegatingMetaObject.BindGetIndex C# (CSharp) Метод

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

Performs the binding of the dynamic get index operation.
public BindGetIndex ( GetIndexBinder binder, DynamicMetaObject indexes ) : DynamicMetaObject
binder GetIndexBinder /// An instance of the that represents the details of the dynamic operation. ///
indexes DynamicMetaObject /// An array of instances - indexes for the get index operation. ///
Результат DynamicMetaObject
        public override DynamicMetaObject BindGetIndex( GetIndexBinder binder, DynamicMetaObject[] indexes )
        {
            return ApplyBinding( meta => meta.BindGetIndex( binder, indexes ),
                                 ( target, errorSuggestion ) =>
                                 binder.FallbackGetIndex( target, indexes, errorSuggestion ) );
        }