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
graph BT Type-->Base0["MulticastDelegate"] Base0-->Base1["Delegate"] Base1-->Base2["object"] Type-.->Interface0["ICloneable"] Type-.->Interface1["ISerializable"] Type["FilterCallback<T>"] class Type type-node

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