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!

MemberAttribute.Match

Determines whether one attribute matches another.

[Visual Basic]
Overridable Public Function Match( _
   ByVal obj As Object _
) As Boolean
[C#]
public virtual bool Match(
   object obj
);
[C++]
public: virtual bool Match(
   Object* obj
);
[JScript]
public function Match(
   obj : Object
) : Boolean;

Parameters

obj
The attribute to compare with this attribute.

Return Value

true if the attributes match; otherwise, false.

Remarks

Notes to Inheritors: This method determines if one MemberAttribute equals another MemberAttribute. You can override this method to determine if one attribute matches another attribute's criteria instead.

See Also

MemberAttribute Class | MemberAttribute Members | System.ComponentModel Namespace