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!

Type.FilterNameIgnoreCase

Represents the case-insensitive member filter used on names.

[Visual Basic]
Public Shared ReadOnly FilterNameIgnoreCase As MemberFilter
[C#]
public static readonly MemberFilter FilterNameIgnoreCase;
[C++]
public: static readonly MemberFilter* FilterNameIgnoreCase;
[JScript]
public static var FilterNameIgnoreCase : MemberFilter;

Remarks

This field holds a reference to the delegate used by the FindMembers method. The method encapsulated by this delegate takes two parameters: the first is a MemberInfo object and the second is an Object. The method determines whether the MemberInfo object matches the criteria specified by the Object. The Object is assigned a string value, which may include a trailing '*' wildcard character.

For example, the Object may be assigned the value "ByTe*". In that case, when the FilterName delegate is invoked, it will return true only if the method represented by the MemberInfo object has a name that begins with the characters "byte", ignoring case.

See the example in the FindMembers topic.

See Also

Type Class | Type Members | System Namespace | FindMembers