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)

'Declaration
Public Delegate Function ItemDataMerger ( _
	sourceItemData As String, _
	destinationItemData As String _
) As String
'Usage
Dim instance As New ItemDataMerger(AddressOf HandlerMethod)

Parameters

sourceItemData
Type: System.String
XML text that contains the item data from the source replica.
destinationItemData
Type: System.String
XML text that contains the item data from the destination replica.

Return Value

Type: System.String
Show: