Archetype.MetaObjects.PrototypalMetaObject.Resolve C# (CSharp) Метод

Resolve() защищенный Метод

Implemented by inheritors, this function should determine the receiver for the binding of the dynamic operation and use the bindTarget to perform the binding and return the result of that binding operation.
The bindTarget can be used multiple times to attempt potential binding operations.
protected Resolve ( DynamicMetaObject>.Func bindTarget ) : DynamicMetaObject
bindTarget DynamicMetaObject>.Func /// Performs the binding of the dynamic operation if the target dynamic object cannot bind. /// The target of the dynamic operation.
Результат System.Dynamic.DynamicMetaObject
        protected override DynamicMetaObject Resolve( Func<DynamicMetaObject, DynamicMetaObject> bindTarget )
        {
            DynamicMetaObject metaObject = CreateBoundDynamicMetaObject( bindTarget, _Prototype );
            return metaObject;
        }