ItemMetadataFilter Delegate

Represents the method that will filter items to be included in a change batch. This delegate is used by GetChangeBatch.

Namespace:  Microsoft.Synchronization.FeedSync
Assembly:  Microsoft.Synchronization (in Microsoft.Synchronization.dll)

Syntax

'Declaration
Public Delegate Function ItemMetadataFilter ( _
    itemId As String, _
    creationVersion As SyncVersion, _
    changeVersion As SyncVersion _
) As Boolean
'Usage
Dim instance As New ItemMetadataFilter(AddressOf HandlerMethod)
public delegate bool ItemMetadataFilter(
    string itemId,
    SyncVersion creationVersion,
    SyncVersion changeVersion
)
public delegate bool ItemMetadataFilter(
    String^ itemId, 
    SyncVersion^ creationVersion, 
    SyncVersion^ changeVersion
)
type ItemMetadataFilter = 
    delegate of 
        itemId:string * 
        creationVersion:SyncVersion * 
        changeVersion:SyncVersion -> bool
JScript supports the use of delegates, but not the declaration of new ones.

Parameters

Return Value

Type: System.Boolean

See Also

Reference

Microsoft.Synchronization.FeedSync Namespace