ISyncMgrConflictResolveInfo::SetPresenterChoice method (syncmgr.h)

Sets what kind of choice was made about a sync manager conflict resolution and whether to apply the choice to all subsequent conflicts in the set.

Syntax

HRESULT SetPresenterChoice(
  [in] SYNCMGR_PRESENTER_CHOICE nPresenterChoice,
  [in] BOOL                     fApplyToAll
);

Parameters

[in] nPresenterChoice

Type: SYNCMGR_PRESENTER_CHOICE

The choice that was made about the conflict resolution. One of the members of the SYNCMGR_PRESENTER_CHOICE enumeration.

[in] fApplyToAll

Type: BOOL

If TRUE, then apply the given choice to all subsequent conflicts in the set. In this case, ISyncMgrConflictResolveInfo::SetItemChoices must also be called.

Return value

Type: HRESULT

If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2008 [desktop apps only]
Target Platform Windows
Header syncmgr.h

See also

ISyncMgrConflictResolveInfo

ISyncMgrConflictResolveInfo::GetPresenterChoice