ValidateType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enumerates the types of validation that are performed during synchronization.
public enum class ValidateType
public enum ValidateType
type ValidateType =
Public Enum ValidateType
- Inheritance
-
ValidateType
Fields
Name | Value | Description |
---|---|---|
NoValidation | 0 | Do not validate the Subscriber data (default). |
RowCountOnly | 1 | Full row count validation of the Subscriber data. |
RowCountAndChecksum | 2 | Full row count and checksum validation of the Subscriber data. |
FastRowCountOnly | 3 | Perform only a fast row count validation of the Subscriber data. |
FastRowCountAndChecksum | 4 | Fast row count and checksum validation of the Subscriber data. |
RowCountAndBinaryChecksum | 5 | Full row count and binary checksum validation of the Subscriber data. |
FastRowCountAndBinaryChecksum | 6 | Fast row count and binary checksum validation of the Subscriber data. |