IronPython.Runtime.Types.ReflectedField.TrySetValue C# (CSharp) Method

TrySetValue() private method

private TrySetValue ( Microsoft.Scripting.CodeContext context, object instance, IronPython.Runtime.Types.PythonType owner, object value ) : bool
context Microsoft.Scripting.CodeContext
instance object
owner IronPython.Runtime.Types.PythonType
value object
return bool
        internal override bool TrySetValue(CodeContext context, object instance, PythonType owner, object value) {
            return TrySetValueWorker(context, instance, owner, value, false);
        }