ClientUpdateServerUpdateAction 属性

获取或设置一个 ResolveAction 枚举值,该值指定发生 ClientUpdateServerUpdate 冲突时要采取的操作。

命名空间:  Microsoft.Synchronization.Data
程序集:  Microsoft.Synchronization.Data(在 Microsoft.Synchronization.Data.dll 中)

语法

声明
Public Property ClientUpdateServerUpdateAction As ResolveAction
    Get
    Set
用法
Dim instance As SyncConflictResolver
Dim value As ResolveAction

value = instance.ClientUpdateServerUpdateAction

instance.ClientUpdateServerUpdateAction = value
public ResolveAction ClientUpdateServerUpdateAction { get; set; }
public:
property ResolveAction ClientUpdateServerUpdateAction {
    ResolveAction get ();
    void set (ResolveAction value);
}
member ClientUpdateServerUpdateAction : ResolveAction with get, set
function get ClientUpdateServerUpdateAction () : ResolveAction
function set ClientUpdateServerUpdateAction (value : ResolveAction)

属性值

类型:Microsoft.Synchronization.Data. . :: . .ResolveAction
一个 ResolveAction 枚举值,该值指定发生 ClientUpdateServerUpdate 冲突时要采取的操作。

示例

下面的代码示例为客户端同步提供程序可能遇到每种冲突类型设置解决操作。若要在完整示例上下文中查看此代码,请参见如何处理数据冲突和错误

this.ConflictResolver.ClientDeleteServerUpdateAction = ResolveAction.ServerWins;            
this.ConflictResolver.ClientUpdateServerDeleteAction = ResolveAction.ClientWins;
//If any of the following conflicts or errors occur, the ApplyChangeFailed
//event is raised.
this.ConflictResolver.ClientInsertServerInsertAction = ResolveAction.FireEvent;
this.ConflictResolver.ClientUpdateServerUpdateAction = ResolveAction.FireEvent;
this.ConflictResolver.StoreErrorAction = ResolveAction.FireEvent;

//Log information for the ApplyChangeFailed event and handle any
//ResolveAction.FireEvent cases.
this.ApplyChangeFailed +=new EventHandler<ApplyChangeFailedEventArgs>(SampleClientSyncProvider_ApplyChangeFailed);
Me.ConflictResolver.ClientDeleteServerUpdateAction = ResolveAction.ServerWins
Me.ConflictResolver.ClientUpdateServerDeleteAction = ResolveAction.ClientWins
'If any of the following conflicts or errors occur, the ApplyChangeFailed
'event is raised.
Me.ConflictResolver.ClientInsertServerInsertAction = ResolveAction.FireEvent
Me.ConflictResolver.ClientUpdateServerUpdateAction = ResolveAction.FireEvent
Me.ConflictResolver.StoreErrorAction = ResolveAction.FireEvent

'Log information for the ApplyChangeFailed event and handle any
'ResolveAction.FireEvent cases.
AddHandler Me.ApplyChangeFailed, AddressOf SampleClientSyncProvider_ApplyChangeFailed

请参阅

参考

SyncConflictResolver类

SyncConflictResolver 成员

Microsoft.Synchronization.Data 命名空间