DtdProcessing Enum

Definition

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
DtdProcessing

Fields

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.

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.

Remarks

This enumeration is set on the XmlReaderSettings.DtdProcessing property or the XmlTextReader.DtdProcessing property.

Applies to