IronPython.Runtime.Types.ReflectedEvent.TryGetValue C# (CSharp) Méthode

TryGetValue() private méthode

private TryGetValue ( CodeContext context, object instance, IronPython.Runtime.Types.PythonType owner, object &value ) : bool
context CodeContext
instance object
owner IronPython.Runtime.Types.PythonType
value object
Résultat bool
        internal override bool TryGetValue(CodeContext/*!*/ context, object instance, PythonType owner, out object value) {
            Assert.NotNull(context, owner);

            value = new BoundEvent(this, instance, owner);
            return true;
        }