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!

EventDescriptor Constructor (MemberDescriptor, MemberAttribute[])

Initializes a new instance of the EventDescriptor 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 EventDescriptor(
   MemberDescriptor descr,
   MemberAttribute[] attrs
);
[C++]
protected: EventDescriptor(
   MemberDescriptor* descr,
   MemberAttribute* attrs[]
);
[JScript]
protected function EventDescriptor(
   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 wish to add to this event description.

Remarks

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

See Also

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