4 instantiations of XmlParserContext
dotnet-svcutil-lib (4)
FrameworkFork\Microsoft.Xml\Xml\BinaryXml\XmlBinaryReader.cs (1)
3236XmlParserContext xpc = new XmlParserContext(_xnt, xnm, this.XmlLang, this.XmlSpace);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (2)
599XmlParserContext pc = new XmlParserContext(null, new XmlNamespaceManager(_doc.NameTable), null, null, null, null, _doc.BaseURI, string.Empty, XmlSpace.None); 738return new XmlParserContext(
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNavigator.cs (1)
2114XmlParserContext context = new XmlParserContext(NameTable, mgr, null, XmlSpace.Default);
36 references to XmlParserContext
dotnet-svcutil-lib (36)
FrameworkFork\Microsoft.Xml\Xml\BinaryXml\XmlBinaryReader.cs (1)
3236XmlParserContext xpc = new XmlParserContext(_xnt, xnm, this.XmlLang, this.XmlSpace);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlReader.cs (6)
1768return XmlReader.Create(inputUri, (XmlReaderSettings)null, (XmlParserContext)null); 1776return XmlReader.Create(inputUri, settings, (XmlParserContext)null); 1782public static XmlReader Create(String inputUri, XmlReaderSettings settings, XmlParserContext inputContext) 1814public static XmlReader Create(Stream input, XmlReaderSettings settings, XmlParserContext inputContext) 1846public static XmlReader Create(TextReader input, XmlReaderSettings settings, XmlParserContext inputContext) 1869internal static XmlReader CreateSqlReader(Stream input, XmlReaderSettings settings, XmlParserContext inputContext)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlReaderSettings.cs (3)
422internal XmlReader CreateReader(String inputUri, XmlParserContext inputContext) 457internal XmlReader CreateReader(Stream input, Uri baseUri, string baseUriString, XmlParserContext inputContext) 493internal XmlReader CreateReader(TextReader input, string baseUriString, XmlParserContext inputContext)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReader.cs (2)
93public XmlTextReader(Stream xmlFragment, XmlNodeType fragType, XmlParserContext context) 99public XmlTextReader(string xmlFragment, XmlNodeType fragType, XmlParserContext context)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (13)
135public XmlParserContext inputContext; 232private XmlParserContext _fragmentParserContext; 369private XmlTextReaderImpl(XmlResolver resolver, XmlReaderSettings settings, XmlParserContext context) 512internal XmlTextReaderImpl(Stream xmlFragment, XmlNodeType fragType, XmlParserContext context) 534internal XmlTextReaderImpl(string xmlFragment, XmlNodeType fragType, XmlParserContext context) 560internal XmlTextReaderImpl(string xmlFragment, XmlParserContext context) 605internal XmlTextReaderImpl(string uriStr, XmlReaderSettings settings, XmlParserContext context, XmlResolver uriResolver) 701XmlParserContext context, bool closeInput) 768internal XmlTextReaderImpl(TextReader input, XmlReaderSettings settings, string baseUriStr, XmlParserContext context) 819internal XmlTextReaderImpl(string xmlFragment, XmlParserContext context, XmlReaderSettings settings) 3042private void InitFragmentReader(XmlNodeType fragmentType, XmlParserContext parserContext, bool allowXmlDeclFragment) 3107private void ProcessDtdFromParserContext(XmlParserContext context) 9119private void SetupFromParserContext(XmlParserContext context, XmlReaderSettings settings)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlValidatingReader.cs (2)
34public XmlValidatingReader(string xmlFragment, XmlNodeType fragType, XmlParserContext context) 44public XmlValidatingReader(Stream xmlFragment, XmlNodeType fragType, XmlParserContext context)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlValidatingReaderImpl.cs (3)
108private XmlParserContext _parserContext; 169internal XmlValidatingReaderImpl(string xmlFragment, XmlNodeType fragType, XmlParserContext context) 189internal XmlValidatingReaderImpl(Stream xmlFragment, XmlNodeType fragType, XmlParserContext context)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (5)
599XmlParserContext pc = new XmlParserContext(null, new XmlNamespaceManager(_doc.NameTable), null, null, null, null, _doc.BaseURI, string.Empty, XmlSpace.None); 689private XmlParserContext GetContext(XmlNode node) 759XmlParserContext pc = GetContext(parentNode); 932private XmlReader CreateInnerXmlReader(String xmlFragment, XmlNodeType nt, XmlParserContext context, XmlDocument doc) 985XmlTextReaderImpl tempreader = new XmlTextReaderImpl(strValue, (XmlParserContext)null);
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNavigator.cs (1)
2114XmlParserContext context = new XmlParserContext(NameTable, mgr, null, XmlSpace.Default);