Initializes a new instance of the XmlReaderSettings class.
Public Sub New
Dim instance As New XmlReaderSettings()
public XmlReaderSettings()
public: XmlReaderSettings()
public function XmlReaderSettings()
The following table shows initial property values for an instance of XmlReaderSettings.
Property
Initial value
CheckCharacters
true.
ConformanceLevel
Document.
IgnoreComments
false.
IgnoreProcessingInstructions
IgnoreWhitespace
LineNumberOffset
0.
LinePositionOffset
MaxCharactersFromEntities
0 (There is no limit on the number of characters that result from expanding entities).
MaxCharactersInDocument
0 (There is no limit on the size of the XML document).
NameTable
nullNothingnullptra null reference (Nothing in Visual Basic).
ProhibitDtd
Schemas
An empty XmlSchemaSet object.
ValidationFlags
ProcessIdentityConstraints.
ValidationType
None.
XmlResolver
A new XmlUrlResolver object.
The following creates a settings object that can be used to construct a reader that strips processing instructions, comments, and insignificant white space.
' Set the reader settings. Dim settings as XmlReaderSettings = new XmlReaderSettings() settings.IgnoreComments = true settings.IgnoreProcessingInstructions = true settings.IgnoreWhitespace = true
// Set the reader settings. XmlReaderSettings settings = new XmlReaderSettings(); settings.IgnoreComments = true; settings.IgnoreProcessingInstructions = true; settings.IgnoreWhitespace = true;
// Set the reader settings. XmlReaderSettings^ settings = gcnew XmlReaderSettings; settings->IgnoreComments = true; settings->IgnoreProcessingInstructions = true; settings->IgnoreWhitespace = true;
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune