Delegato ItemMetadataFilter
Rappresenta il metodo che filtrerà gli elementi da includere in un batch di modifiche. Questo delegato viene utilizzato da GetChangeBatch.
Spazio dei nomi: Microsoft.Synchronization.FeedSync
Assembly: Microsoft.Synchronization (in microsoft.synchronization.dll)
Sintassi
'Dichiarazione
Public Delegate Function ItemMetadataFilter ( _
itemId As String, _
creationVersion As SyncVersion, _
changeVersion As SyncVersion _
) As Boolean
'Utilizzo
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
)
/** @delegate */
public delegate boolean ItemMetadataFilter (
String itemId,
SyncVersion creationVersion,
SyncVersion changeVersion
)
JScript supports the use of delegates, but not the declaration of new ones.
Parametri
- itemId
ID dell'elemento.
- creationVersion
Versione di creazione dell'elemento.
- changeVersion
Versione di modifica dell'elemento.
Valore restituito
true per includere l'elemento nel batch di modifiche. In caso contrario, false.