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
)
type RequestTrackedFilterCallback = 
    delegate of 
        filter:ISyncFilter -> bool
JScript supports the use of delegates, but not the declaration of new ones.

Parameters

Return Value

Type: System.Boolean
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