System.Xml.XmlReaderSettings
namespace System.Xml
{
public sealed class XmlReaderSettings
{
public bool Async { get; set; }
public bool CheckCharacters { get; set; }
public bool CloseInput { get; set; }
public ConformanceLevel ConformanceLevel { get; set; }
public DtdProcessing DtdProcessing { get; set; }
public bool IgnoreComments { get; set; }
public bool IgnoreProcessingInstructions { get; set; }
public bool IgnoreWhitespace { get; set; }
public int LineNumberOffset { get; set; }
public int LinePositionOffset { get; set; }
public long MaxCharactersFromEntities { get; set; }
public long MaxCharactersInDocument { get; set; }
public XmlNameTable NameTable { get; set; }
public bool ProhibitDtd { get; set; }
public XmlSchemaSet Schemas { get; set; }
public XmlSchemaValidationFlags ValidationFlags { get; set; }
public ValidationType ValidationType { get; set; }
public XmlResolver XmlResolver {
set;
}
public event ValidationEventHandler ValidationEventHandler;
public XmlReaderSettings();
public XmlReaderSettings Clone();
public void Reset();
}
}