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!

TypeFilter Delegate

Filters the classes represented in an array of Type objects.

[Visual Basic]
Public Delegate Sub TypeFilter( _
   ByVal m As Type, _
   ByVal filterCriteria As Object _
) As Boolean
[C#]
public delegate bool TypeFilter(
   Type m,
   object filterCriteria
);
[C++]
public __gc __delegate bool TypeFilter(
   Type* m,
   Object* filterCriteria
);

[JScript] In JScript, you can use the delegates in the NGWS frameworks, but you cannot define your own.

Parameters [Visual Basic, C#, C++]

The declaration of your event-handling method must have the same parameters as the TypeFilter delegate declaration.

m
The Type object to which the filter is applied.
filterCriteria
An arbitrary object used to filter the list.

Remarks

The TypeFilter delegate is used to filter a list of classes. Specifically, you use it to filter the classes represented in an array of Type objects. The Type.FindInterfaces() method uses this delegate to filter the list of interfaces that it returns. Every subclass of Delegate and MulticastDelegate has a constructor and a DynamicInvoke method. See the Managed C++ code example given in the description for Delegate.

Requirements

Namespace: System.Reflection

Assembly: mscorlib.dll

See Also

System.Reflection Namespace | FindInterfaces | Object | Delegate | MulticastDelegate