MemberFilter Delegate
.NET Framework (current version)
Represents a delegate that is used to filter a list of members represented in an array of MemberInfo objects.
Assembly: mscorlib (in mscorlib.dll)
[SerializableAttribute] [ComVisibleAttribute(true)] public delegate bool MemberFilter( MemberInfo^ m, Object^ filterCriteria )
Parameters
- m
-
Type:
System.Reflection::MemberInfo^
The MemberInfo object to which the filter is applied.
- filterCriteria
-
Type:
System::Object^
An arbitrary object used to filter the list.
Every derived class of a Delegate and MulticastDelegate has a constructor and an Invoke method. (See the code example in Delegate.)
The FindMembers method uses this delegate to filter the list of members that it returns.
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: