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

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

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