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

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

Performs the binding of the dynamic invoke operation.
public BindInvoke ( InvokeBinder binder, DynamicMetaObject args ) : DynamicMetaObject
binder InvokeBinder /// An instance of the that represents the details of the dynamic operation. ///
args DynamicMetaObject /// An array of instances - arguments to the invoke operation. ///
Результат DynamicMetaObject
        public override DynamicMetaObject BindInvoke( InvokeBinder binder, DynamicMetaObject[] args )
        {
            return ApplyBinding( meta => meta.BindInvoke( binder, args ),
                                 ( target, errorSuggestion ) => binder.FallbackInvoke( target, args, errorSuggestion ) );
        }