FilterCallback<T> Delegate
Represents a callback function for filtering a list of data entities of type T.
Namespace
DbSyncKit.DB.Fetcher
Interfaces
  • ICloneable
  • ISerializable
Base Types
  • object
  • Delegate
  • MulticastDelegate
FilterCallback<T>
MulticastDelegate
Delegate
object
ICloneable
ISerializable

Syntax

public delegate List<T> FilterCallback<T>(List<T> data) : MulticastDelegate, ICloneable, 
    ISerializable

Remarks

This delegate defines a callback function that takes a list of data entities as input, performs filtering operations on the data, and returns the filtered list.

Type Parameters

Name Description
T The type of data entities to filter.

Operators

Name Value Summary
operator !=(Delegate, Delegate) bool
Inherited from Delegate
operator !=(MulticastDelegate, MulticastDelegate) bool
Inherited from MulticastDelegate
operator ==(Delegate, Delegate) bool
Inherited from Delegate
operator ==(MulticastDelegate, MulticastDelegate) bool
Inherited from MulticastDelegate