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

DebugReflectPropertyDescriptor() public method

public DebugReflectPropertyDescriptor ( Type componentClass, string name, Type type, Type receiverType, MethodInfo getMethod, MethodInfo setMethod, Attribute attrs ) : System.Runtime.Serialization.Formatters
componentClass System.Type
name string
type System.Type
receiverType System.Type
getMethod System.Reflection.MethodInfo
setMethod System.Reflection.MethodInfo
attrs System.Attribute
return System.Runtime.Serialization.Formatters
        public DebugReflectPropertyDescriptor(Type componentClass, string name, Type type, Type receiverType, MethodInfo getMethod, MethodInfo setMethod, Attribute[] attrs) : this(componentClass, name, type, attrs) {
            this.receiverType = receiverType;
            this.getMethod = getMethod;
            this.setMethod = setMethod;
            state[BitGetQueried | BitSetQueried] = true;
        }

Same methods

DebugReflectPropertyDescriptor::DebugReflectPropertyDescriptor ( Type componentClass, PropertyDescriptor oldReflectPropertyDescriptor, Attribute attributes ) : System.Runtime.Serialization.Formatters
DebugReflectPropertyDescriptor::DebugReflectPropertyDescriptor ( Type componentClass, string name, Type type, Attribute attributes ) : System.Runtime.Serialization.Formatters
DebugReflectPropertyDescriptor::DebugReflectPropertyDescriptor ( Type componentClass, string name, Type type, PropertyInfo propInfo, MethodInfo getMethod, MethodInfo setMethod, Attribute attrs ) : System.Runtime.Serialization.Formatters