Archetype.PrototypalObject.TryInvoke C# (CSharp) Метод

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

public TryInvoke ( InvokeBinder binder, object args, object &result ) : bool
binder System.Dynamic.InvokeBinder
args object
result object
Результат bool
        public override bool TryInvoke( InvokeBinder binder, object[] args, out object result )
        {
            if(!ReferenceEquals(Prototype, null))
            {
                if(Prototype.TryInvoke(binder, args, out result))
                {
                    return true;
                }
            }
            if ( TryInvokeMissing == null )
            {
                result = null;
                return false;
            }
            return TryInvokeMissing( binder, args, out result );
        }