XmlSeverityType 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.
Represents the severity of the validation event.
public enum class XmlSeverityType
public enum XmlSeverityType
type XmlSeverityType =
Public Enum XmlSeverityType
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Error | 0 | Indicates a validation error occurred when validating the instance document. This applies to document type definitions (DTDs) and XML Schema definition language (XSD) schemas. The World Wide Web Consortium (W3C) validity constraints are considered errors. If no validation event handler has been created, errors throw an exception. |
Warning | 1 | Indicates that a validation event occurred that is not an error. A warning is typically issued when there is no DTD, or XML Schema to validate a particular element or attribute against. Unlike errors, warnings do not throw an exception if there is no validation event handler. |