SyncConflict.ConflictType Property
Gets or sets the ConflictType enumeration value that represents the type of synchronization conflict.
Namespace: Microsoft.Synchronization.Data
Assembly: Microsoft.Synchronization.Data (in Microsoft.Synchronization.Data.dll)
Syntax
'Declaration
Public Property ConflictType As ConflictType
Get
Set
'Usage
Dim instance As SyncConflict
Dim value As ConflictType
value = instance.ConflictType
instance.ConflictType = value
public ConflictType ConflictType { get; set; }
public:
property ConflictType ConflictType {
ConflictType get ();
void set (ConflictType value);
}
member ConflictType : ConflictType with get, set
function get ConflictType () : ConflictType
function set ConflictType (value : ConflictType)
Property Value
Type: Microsoft.Synchronization.Data.ConflictType
A ConflictType enumeration value that represents the type of synchronization conflict.
Examples
For an example of how to handle conflicts, see How to: Handle Data Conflicts and Errors.