Delegate PartialList<T>.FilterCallback
Callback used to filter a specific object.
Assembly: EPiServer.Cms.AspNet.dll
Version: 11.20.7
Syntax
public delegate bool FilterCallback(T item);
Parameters
Type |
Name |
Description |
T |
item |
The object to filter
|
Returns
Type |
Description |
System.Boolean |
true to keep the object in the set, otherwise false
|
Constructors
FilterCallback(Object, IntPtr)
Declaration
public FilterCallback(object object, IntPtr method)
Parameters
Type |
Name |
Description |
System.Object |
object |
|
System.IntPtr |
method |
|
Methods
BeginInvoke(T, AsyncCallback, Object)
Declaration
public virtual IAsyncResult BeginInvoke(T item, AsyncCallback callback, object object)
Parameters
Type |
Name |
Description |
T |
item |
|
System.AsyncCallback |
callback |
|
System.Object |
object |
|
Returns
Type |
Description |
System.IAsyncResult |
|
EndInvoke(IAsyncResult)
Declaration
public virtual bool EndInvoke(IAsyncResult result)
Parameters
Type |
Name |
Description |
System.IAsyncResult |
result |
|
Returns
Type |
Description |
System.Boolean |
|
Invoke(T)
Declaration
public virtual bool Invoke(T item)
Parameters
Type |
Name |
Description |
T |
item |
|
Returns
Type |
Description |
System.Boolean |
|
Extension Methods