DtdProcessing 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.
Specifies the options for processing DTDs. The DtdProcessing enumeration is used by the XmlReaderSettings class.
public enum class DtdProcessing
public enum DtdProcessing
type DtdProcessing =
Public Enum DtdProcessing
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Prohibit | 0 | Specifies that when a DTD is encountered, an XmlException is thrown with a message that states that DTDs are prohibited. This is the default behavior. |
Ignore | 1 | Causes the DOCTYPE element to be ignored. No DTD processing occurs, and the DTD/DOCTYPE is lost on output. |
Parse | 2 | Used for parsing DTDs. |
Remarks
This enumeration is set on the XmlReaderSettings.DtdProcessing property or the XmlTextReader.DtdProcessing property.