RequestTrackedFilterCallback Delegate

Informs the source provider of a filter that is tracked by the destination replica.

Namespace: Microsoft.Synchronization
Assembly: Microsoft.Synchronization (in microsoft.synchronization.dll)

Syntax

'Declaration
Public Delegate Function RequestTrackedFilterCallback ( _
    filter As ISyncFilter _
) As Boolean
'Usage
Dim instance As New RequestTrackedFilterCallback(AddressOf HandlerMethod)
public delegate bool RequestTrackedFilterCallback (
    ISyncFilter filter
)
public delegate bool RequestTrackedFilterCallback (
    ISyncFilter^ filter
)
/** @delegate */
public delegate boolean RequestTrackedFilterCallback (
    ISyncFilter filter
)
JScript supports the use of delegates, but not the declaration of new ones.

Parameters

  • filter
    A filter that is tracked by the destination replica.

Return Value

true when the source provider tracks filter. Otherwise, false.

Remarks

A destination provider calls RequestTrackedFilterCallback one time for each filter that is tracked by the destination replica. The handler for RequestTrackedFilterCallback passes the specified filter to the TryAddTrackedFilter method of the source provider.

See Also

Reference

Microsoft.Synchronization Namespace