ItemDataMerger Delegate

[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

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

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

Syntax

'Declaration
Public Delegate Function ItemDataMerger ( _
    sourceItemData As String, _
    destinationItemData As String _
) As String
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
    Source item data XML text.
  • destinationItemData
    Destination item data XML text.

XML node text that contains the merged source and destination item data.

Platforms

Development Platforms

For a list of the supported platforms, see Hardware and Software Requirements (Sync Framework).

Target Platforms

See Also

Reference

Microsoft.Synchronization.Sse Namespace