Archetype.MetaObjects.NestedCastingMetaObject.BindConvert C# (CSharp) Method

BindConvert() public method

Performs the binding of the dynamic conversion operation.
public BindConvert ( ConvertBinder binder ) : DynamicMetaObject
binder System.Dynamic.ConvertBinder /// An instance of the that represents the details of the dynamic operation. ///
return System.Dynamic.DynamicMetaObject
        public override DynamicMetaObject BindConvert( ConvertBinder binder )
        {
            return ApplyBinding( meta => Convert( binder, meta ), binder.FallbackConvert );
        }