System.Xml.XmlParserContext
namespace System.Xml
{
public class XmlParserContext
{
public string BaseURI { get; set; }
public string DocTypeName { get; set; }
public Encoding Encoding { get; set; }
public string InternalSubset { get; set; }
public XmlNamespaceManager NamespaceManager { get; set; }
public XmlNameTable NameTable { get; set; }
public string PublicId { get; set; }
public string SystemId { get; set; }
public string XmlLang { get; set; }
public XmlSpace XmlSpace { get; set; }
public XmlParserContext(XmlNameTable nt, XmlNamespaceManager nsMgr, string docTypeName, string pubId, string sysId, string internalSubset, string baseURI, string xmlLang, XmlSpace xmlSpace);
public XmlParserContext(XmlNameTable nt, XmlNamespaceManager nsMgr, string docTypeName, string pubId, string sysId, string internalSubset, string baseURI, string xmlLang, XmlSpace xmlSpace, Encoding enc);
public XmlParserContext(XmlNameTable nt, XmlNamespaceManager nsMgr, string xmlLang, XmlSpace xmlSpace);
public XmlParserContext(XmlNameTable nt, XmlNamespaceManager nsMgr, string xmlLang, XmlSpace xmlSpace, Encoding enc);
}
}