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

BindUnaryOperation() public method

Performs the binding of the dynamic unary operation.
public BindUnaryOperation ( UnaryOperationBinder binder ) : DynamicMetaObject
binder UnaryOperationBinder /// An instance of the that represents the details of the dynamic operation. ///
return DynamicMetaObject
        public override DynamicMetaObject BindUnaryOperation( UnaryOperationBinder binder )
        {
            return ApplyBinding( meta => meta.BindUnaryOperation( binder ), binder.FallbackUnaryOperation );
        }