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
)
type ItemDataMerger = 
    delegate of 
        sourceItemData:string * 
        destinationItemData:string -> string
JScript supports the use of delegates, but not the declaration of new ones.

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

See Also

Reference

Microsoft.Synchronization.FeedSync Namespace