ValidationOptions 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 validation options.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum ValidationOptions
[<System.Flags>]
type ValidationOptions =
Public Enum ValidationOptions
- Inheritance
-
ValidationOptions
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Provide main errors only; no detailed validation results, no warnings, no messages, validate bindings. |
DoNotValidateBindings | 1 | Do not validate the bindings (KeyColumns, NameColumn etc). |
AddDetails | 2 | Include detailed validation results; for example, if a Dimension has multiple key attributes defined, add an error for each attribute. |
AddWarnings | 4 | Add warnings (about best practices usually). |
AddMessages | 8 | Add messages (about best practices usually). |