XmlValidatingReader.Settings Property

Definition

Gets the XmlReaderSettings object that was used to create this XmlValidatingReader instance.

public:
 virtual property System::Xml::XmlReaderSettings ^ Settings { System::Xml::XmlReaderSettings ^ get(); };
public override System.Xml.XmlReaderSettings Settings { get; }
member this.Settings : System.Xml.XmlReaderSettings
Public Overrides ReadOnly Property Settings As XmlReaderSettings

Property Value

null because XmlValidatingReader objects are not instantiated using the XmlReaderSettings class and the Create method.

Remarks

Note

The XmlValidatingReader class is obsolete in .NET Framework version 2.0. You can create a validating XmlReader instance by using the XmlReaderSettings class and the Create method. For more information, see Validating XML Data with XmlReader.

Applies to