Udostępnij za pośrednictwem


IFeedItemDataXmlTextMerger::MergeFeedItemDataXmlText

When implemented by a derived class, combines data from two items into one item. This method represents item data by using XML strings in the FeedSync format.

HRESULT MergeFeedItemDataXmlText(
  LPCWSTR wszSourceItemText,
  LPCWSTR wszDestItemText,
  IFeedItemDataXmlTextMergerCallback * pCallback);

Parameters

  • wszSourceItemText
    [in] The item data, represented as an XML string in the FeedSync format, from the source replica.
  • wszDestItemText
    [in] The item data, represented as an XML string in the FeedSync format, from the destination replica.
  • pCallback
    [in] A callback interface that is used to return the item data, represented as an XML string in the FeedSync format. It is built by combining the item data from the source replica with the item data from the destination replica.

Return Value

  • S_OK

  • Implementation-specified error codes.

Remarks

This method is called by IFeedBuilderWithXmlText::SaveChangeDataXmlText when a change is specified to be applied by using the merge action.

See Also

Reference

IFeedItemDataXmlTextMerger Interface