ItemDataMerger Delegate

Represents the method that will handle the merging of data for a merge change to be saved by SaveItemChange.

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

Syntax

'Declaration
Public Delegate Function ItemDataMerger ( _
    sourceItemData As String, _
    destinationItemData As String _
) As String
'Usage
Dim instance As New ItemDataMerger(AddressOf HandlerMethod)
public delegate string ItemDataMerger (
    string sourceItemData,
    string destinationItemData
)
public delegate String^ ItemDataMerger (
    String^ sourceItemData, 
    String^ destinationItemData
)
/** @delegate */
public delegate String ItemDataMerger (
    String sourceItemData, 
    String destinationItemData
)
JScript supports the use of delegates, but not the declaration of new ones.

Parameters

  • sourceItemData
    XML text that contains the item data from the source replica.
  • destinationItemData
    XML text that contains the item data from the destination replica.

Return Value

XML text that contains the item data built by combining the item data from the source replica with the item data from the destination replica.

See Also

Reference

Microsoft.Synchronization.FeedSync Namespace