SyncConflict Class
Represents a synchronization conflict at the row level.
Namespace: Microsoft.Synchronization.Data
Assembly: Microsoft.Synchronization.Data (in microsoft.synchronization.data.dll)
Syntax
'Declaration
<SerializableAttribute> _
Public Class SyncConflict
'Usage
Dim instance As SyncConflict
[SerializableAttribute]
public class SyncConflict
[SerializableAttribute]
public ref class SyncConflict
/** @attribute SerializableAttribute() */
public class SyncConflict
SerializableAttribute
public class SyncConflict
Remarks
For conflicts encountered during synchronization, the data from each conflicting row is stored in a SyncConflict collection. It is possible for this collection to grow large enough to cause an out of memory error in the following situations:
There are a large number of conflicting rows. Consider synchronizing a smaller number of rows in each session, or limit the number of conflicts by updating a particular row at only one node.
The conflicting rows contain columns with large data types. Consider not including the columns with large data types in the set of columns that is synchronized. For more information, see How to: Filter Rows and Columns.
Example
For an example of how to handle conflicts, see How to: Handle Data Conflicts and Errors.
Inheritance Hierarchy
System.Object
Microsoft.Synchronization.Data.SyncConflict
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also
Reference
SyncConflict Members
Microsoft.Synchronization.Data Namespace