SyncErrorNumber Enumeration

Defines a list of errors that can occur during synchronization.

Namespace:  Microsoft.Synchronization.Data
Assembly:  Microsoft.Synchronization.Data (in Microsoft.Synchronization.Data.dll)

Syntax

'Declaration
Public Enumeration SyncErrorNumber
'Usage
Dim instance As SyncErrorNumber
public enum SyncErrorNumber
public enum class SyncErrorNumber
type SyncErrorNumber
public enum SyncErrorNumber

Members

Member name Description
Unknown An unknown error occurred during synchronization.
InvalidValue The value specified for one of the arguments is not valid.
StoreException An exception was thrown by the remote data store.
ParsingQueryFailed The remote data store could not parse one of the SELECT commands that are used to retrieve data changes.
InvalidArguments One of the arguments specified is not valid.
AddingTableMetadataFailed The local database could not add metadata columns to a table that is included in synchronization.
TableDoesNotExist The table does not exist in the database, and you specified a value of UseExistingTableOrFail for CreationOption.
TableAlreadyExists The table already exists in the database, and you specified a value of CreateNewTableOrFail for CreationOption.
SyncInProgress A synchronization session is in progress and Synchronize was called. Only one session can be in progress at a time for the local database. Only one session can be in progress at a time for a specified table in the remote database.
MetadataDoesNotExist One of the anchor values is missing.
TableIsNotTracked Cannot retrieve data changes from a table because the change tracking metadata does not exist for that table.
PrimaryKeyNotFound A table does not have a primary key. A primary key is required to identify rows during synchronization.
InvalidSchemaDataSet The table schema is not valid for one of the tables that should be created in the local database. If you specify a schema by using SchemaDataSet, make sure that the data set contains a valid schema for all tables that should be synchronized.
MissingTableSchema The table schema is not defined for one of the tables that should be created in the local database. If you specify a schema by using SchemaDataSet, make sure that the data set contains a valid schema for all tables that should be synchronized.
MissingSelectCommand One of the SELECT commands that are used to retrieve data changes has not been defined.
MissingSessionVariable A required session variable is missing for one of the SELECT commands that are used to retrieve data changes. For a list of session variables, see SyncSession.

See Also

Reference

Microsoft.Synchronization.Data Namespace