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!

MemberDescriptor Constructor (MemberDescriptor, MemberAttribute[])

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

[Visual Basic]
Overloads Public Sub New( _
   ByVal oldMemberDescriptor As MemberDescriptor, _
   ByVal newAttributes() As MemberAttribute _
)
[C#]
public MemberDescriptor(
   MemberDescriptor oldMemberDescriptor,
   MemberAttribute[] newAttributes
);
[C++]
public: MemberDescriptor(
   MemberDescriptor* oldMemberDescriptor,
   MemberAttribute* newAttributes[]
);
[JScript]
public function MemberDescriptor(
   oldMemberDescriptor : MemberDescriptor,
   newAttributes : MemberAttribute[]
);

Parameters

oldMemberDescriptor
A MemberDescriptor that has the name of the member and its attributes.
newAttributes
A MemberAttribute array with the attributes you wish to add to the member.

Remarks

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

See Also

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