IronPython.Runtime.Binding.SlotOrFunction.TryGetBinder C# (CSharp) Méthode

TryGetBinder() static private méthode

static private TryGetBinder ( PythonContext state, DynamicMetaObject types, string op, string rop, SlotOrFunction &res ) : bool
state PythonContext
types DynamicMetaObject
op string
rop string
res SlotOrFunction
Résultat bool
        internal static bool TryGetBinder(PythonContext/*!*/ state, DynamicMetaObject/*!*/[]/*!*/ types, string op, string rop, out SlotOrFunction/*!*/ res) {
            PythonType declType;
            return TryGetBinder(state, types, op, rop, out res, out declType);
        }

Same methods

SlotOrFunction::TryGetBinder ( PythonContext state, DynamicMetaObject types, string op, string rop, SlotOrFunction &res, IronPython.Runtime.Types.PythonType &declaringType ) : bool