XmlValidatingReader.Settings Property   
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.
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.