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.FillAttributes

In an inheriting class, adds the attributes of the inheriting class to the specified list of attributes in the parent class.

[Visual Basic]
Overridable Protected Sub FillAttributes( _
   ByVal attributeList As IList _
)
[C#]
protected virtual void FillAttributes(
   IList attributeList
);
[C++]
protected: virtual void FillAttributes(
   IList* attributeList
);
[JScript]
protected function FillAttributes(
   attributeList : IList
);

Parameters

attributeList
An IList that lists the attributes in the parent class. Initially, this will be empty.

Remarks

The IList with the attributes is created once. If there are duplicate attributes in the list, only the first instance is saved; all subsequent duplicate attributes are removed from the list.

See Also

MemberDescriptor Class | MemberDescriptor Members | System.ComponentModel Namespace