System.ComponentModel.ReflectPropertyDescriptor.ReflectPropertyDescriptor C# (CSharp) Method

ReflectPropertyDescriptor() public method

A constructor for ReflectPropertyDescriptors that creates an extender property.
public ReflectPropertyDescriptor ( Type componentClass, string name, Type type, Type receiverType, MethodInfo getMethod, MethodInfo setMethod, Attribute attrs ) : System.Collections
componentClass Type
name string
type Type
receiverType Type
getMethod System.Reflection.MethodInfo
setMethod System.Reflection.MethodInfo
attrs Attribute
return System.Collections
        public ReflectPropertyDescriptor(Type componentClass, string name, Type type, Type receiverType, MethodInfo getMethod, MethodInfo setMethod, Attribute[] attrs) : this(componentClass, name, type, attrs)
        {
            _receiverType = receiverType;
            _getMethod = getMethod;
            _setMethod = setMethod;
            _state.DangerousSet(s_bitGetQueried | s_bitSetQueried, true);
        }

Same methods

ReflectPropertyDescriptor::ReflectPropertyDescriptor ( Type componentClass, PropertyDescriptor oldReflectPropertyDescriptor, Attribute attributes ) : System.Collections
ReflectPropertyDescriptor::ReflectPropertyDescriptor ( Type componentClass, string name, Type type, Attribute attributes ) : System.Collections
ReflectPropertyDescriptor::ReflectPropertyDescriptor ( Type componentClass, string name, Type type, PropertyInfo propInfo, MethodInfo getMethod, MethodInfo setMethod, Attribute attrs ) : System.Collections