NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

PropertyDescriptor Constructor (MemberDescriptor, MemberAttribute[])

Initializes a new instance of the PropertyDescriptor class with the name in the specified MemberDescriptor and the attributes in both the MemberDescriptor and the MemberAttribute array.

[Visual Basic]
Overloads Protected Sub New( _
   ByVal descr As MemberDescriptor, _
   ByVal attrs() As MemberAttribute _
)
[C#]
protected PropertyDescriptor(
   MemberDescriptor descr,
   MemberAttribute[] attrs
);
[C++]
protected: PropertyDescriptor(
   MemberDescriptor* descr,
   MemberAttribute* attrs[]
);
[JScript]
protected function PropertyDescriptor(
   descr : MemberDescriptor,
   attrs : MemberAttribute[]
);

Parameters

descr
A MemberDescriptor that has the name of the member and its attributes.
attrs
A MemberAttribute array with the attributes you want to associate with the property.

Remarks

This constructor appends the attributes in the MemberAttribute array to the attributes in the MemberDescriptor.

See Also

PropertyDescriptor Class | PropertyDescriptor Members | System.ComponentModel Namespace | PropertyDescriptor Constructor Overload List | MemberDescriptor | MemberAttribute