ItemMetadataFilter デリゲート
変更バッチに含める項目をフィルタするメソッドを表します。このデリゲートは、GetChangeBatch により使用されます。
名前空間: Microsoft.Synchronization.FeedSync
アセンブリ: Microsoft.Synchronization (microsoft.synchronization.dll 内)
構文
'宣言
Public Delegate Function ItemMetadataFilter ( _
itemId As String, _
creationVersion As SyncVersion, _
changeVersion As SyncVersion _
) As Boolean
'使用
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.
パラメータ
- itemId
項目の ID。
- creationVersion
項目の作成バージョン。
- changeVersion
項目の変更バージョン。
戻り値
項目を変更バッチに含める場合は true、それ以外の場合は false。