System.Reflection.RuntimePropertyInfo.SetValue C# (CSharp) Method

SetValue() private method

private SetValue ( Object obj, Object value, Object index ) : void
obj Object
value Object
index Object
return void
        public override void SetValue(Object obj, Object value, Object[] index)
        {
            SetValue(obj,
                    value,
                    BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.Static, 
                    null, 
                    index, 
                    null);
        }

Same methods

RuntimePropertyInfo::SetValue ( Object obj, Object value, BindingFlags invokeAttr, Binder binder, Object index, CultureInfo culture ) : void