10 instantiations of XmlParserContext
PresentationBuildTasks (2)
BuildTasks\Microsoft\Build\Tasks\Windows\UidManager.cs (1)
502XmlParserContext context = new XmlParserContext(
Framework\System\Windows\Markup\ParserContext.cs (1)
475XmlParserContext xmlParserContext = new XmlParserContext(null, xmlnsMgr, parserContext.XmlLang, xmlSpace);
PresentationFramework (1)
src\Framework\System\Windows\Markup\ParserContext.cs (1)
475XmlParserContext xmlParserContext = new XmlParserContext(null, xmlnsMgr, parserContext.XmlLang, xmlSpace);
System.Configuration (2)
System\Configuration\MgmtConfigurationRecord.cs (1)
697XmlParserContext context = new XmlParserContext(null, null, null, XmlSpace.Default, Encoding.Unicode);
System\Configuration\XmlUtil.cs (1)
1009XmlParserContext context = new XmlParserContext(null, null, null, XmlSpace.Default, Encoding.Unicode);
System.Workflow.Runtime (1)
Tracking\TrackingProfileSerializer.cs (1)
76XmlParserContext ctx = new XmlParserContext(nt, nsmgr, null, XmlSpace.None);
System.Xml (4)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
2842XmlParserContext xpc = new XmlParserContext(this.xnt, xnm, this.XmlLang, this.XmlSpace);
System\Xml\Dom\XmlLoader.cs (2)
525XmlParserContext pc = new XmlParserContext(null, new XmlNamespaceManager( this.doc.NameTable ), null, null, null, null, this.doc.BaseURI, string.Empty, XmlSpace.None); 641return new XmlParserContext(
System\Xml\XPath\XPathNavigator.cs (1)
1773XmlParserContext context = new XmlParserContext(NameTable, mgr, null, XmlSpace.Default);
54 references to XmlParserContext
PresentationBuildTasks (5)
BuildTasks\Microsoft\Build\Tasks\Windows\UidManager.cs (1)
502XmlParserContext context = new XmlParserContext(
Framework\System\Windows\Markup\ParserContext.cs (3)
428public static implicit operator XmlParserContext(ParserContext parserContext) 439public static XmlParserContext ToXmlParserContext(ParserContext parserContext) 475XmlParserContext xmlParserContext = new XmlParserContext(null, xmlnsMgr, parserContext.XmlLang, xmlSpace);
Framework\System\Windows\Markup\XamlParser.cs (1)
91(XmlParserContext)parserContext) )
PresentationFramework (5)
src\Framework\System\Windows\Markup\FilteredXmlReader.cs (1)
241internal FilteredXmlReader( string xmlFragment, XmlNodeType fragmentType, XmlParserContext context ) :
src\Framework\System\Windows\Markup\ParserContext.cs (4)
103public ParserContext(XmlParserContext xmlParserContext) 428public static implicit operator XmlParserContext(ParserContext parserContext) 439public static XmlParserContext ToXmlParserContext(ParserContext parserContext) 475XmlParserContext xmlParserContext = new XmlParserContext(null, xmlnsMgr, parserContext.XmlLang, xmlSpace);
System.Configuration (2)
System\Configuration\MgmtConfigurationRecord.cs (1)
697XmlParserContext context = new XmlParserContext(null, null, null, XmlSpace.Default, Encoding.Unicode);
System\Configuration\XmlUtil.cs (1)
1009XmlParserContext context = new XmlParserContext(null, null, null, XmlSpace.Default, Encoding.Unicode);
System.Data (4)
fx\src\data\System\Data\SQLTypes\SqlXml.cs (4)
47private readonly static Func<Stream, XmlReaderSettings, XmlParserContext, XmlReader> sqlReaderDelegate = CreateSqlReaderDelegate(); 131private static Func<Stream, XmlReaderSettings, XmlParserContext, XmlReader> CreateSqlReaderDelegate() 134return (Func<Stream, XmlReaderSettings, XmlParserContext, XmlReader>)Delegate.CreateDelegate(typeof(Func<Stream, XmlReaderSettings, XmlParserContext, XmlReader>), CreateSqlReaderMethodInfo);
System.Workflow.Runtime (1)
Tracking\TrackingProfileSerializer.cs (1)
76XmlParserContext ctx = new XmlParserContext(nt, nsmgr, null, XmlSpace.None);
System.Xml (37)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
2842XmlParserContext xpc = new XmlParserContext(this.xnt, xnm, this.XmlLang, this.XmlSpace);
System\Xml\Core\XmlReader.cs (6)
1540return XmlReader.Create(inputUri, (XmlReaderSettings)null, (XmlParserContext)null); 1549return XmlReader.Create(inputUri, settings, (XmlParserContext)null); 1557public static XmlReader Create(String inputUri, XmlReaderSettings settings, XmlParserContext inputContext) { 1583public static XmlReader Create(Stream input, XmlReaderSettings settings, XmlParserContext inputContext) { 1609public static XmlReader Create(TextReader input, XmlReaderSettings settings, XmlParserContext inputContext) { 1629internal static XmlReader CreateSqlReader(Stream input, XmlReaderSettings settings, XmlParserContext inputContext) {
System\Xml\Core\XmlReaderSettings.cs (3)
377internal XmlReader CreateReader(String inputUri, XmlParserContext inputContext) { 409internal XmlReader CreateReader(Stream input, Uri baseUri, string baseUriString, XmlParserContext inputContext) { 441internal XmlReader CreateReader(TextReader input, string baseUriString, XmlParserContext inputContext) {
System\Xml\Core\XmlTextReader.cs (2)
82public XmlTextReader( Stream xmlFragment, XmlNodeType fragType, XmlParserContext context ) { 87public XmlTextReader( string xmlFragment, XmlNodeType fragType, XmlParserContext context ) {
System\Xml\Core\XmlTextReaderImpl.cs (13)
143public XmlParserContext inputContext; 243XmlParserContext fragmentParserContext; 396private XmlTextReaderImpl( XmlResolver resolver, XmlReaderSettings settings, XmlParserContext context ) { 533internal XmlTextReaderImpl( Stream xmlFragment, XmlNodeType fragType, XmlParserContext context ) 553internal XmlTextReaderImpl( string xmlFragment, XmlNodeType fragType, XmlParserContext context ) 577internal XmlTextReaderImpl( string xmlFragment, XmlParserContext context ) 622internal XmlTextReaderImpl( string uriStr, XmlReaderSettings settings, XmlParserContext context, XmlResolver uriResolver) 710XmlParserContext context, bool closeInput ) 772internal XmlTextReaderImpl( TextReader input, XmlReaderSettings settings, string baseUriStr, XmlParserContext context ) 821internal XmlTextReaderImpl( string xmlFragment, XmlParserContext context, XmlReaderSettings settings ) 2733private void InitFragmentReader( XmlNodeType fragmentType, XmlParserContext parserContext, bool allowXmlDeclFragment ) { 2792private void ProcessDtdFromParserContext(XmlParserContext context) { 8037void SetupFromParserContext( XmlParserContext context, XmlReaderSettings settings ) {
System\Xml\Core\XmlTextReaderImplAsync.cs (1)
936private Task ProcessDtdFromParserContextAsync(XmlParserContext context) {
System\Xml\Core\XmlValidatingReader.cs (2)
33public XmlValidatingReader( string xmlFragment, XmlNodeType fragType, XmlParserContext context ) { 41public XmlValidatingReader( Stream xmlFragment, XmlNodeType fragType, XmlParserContext context ) {
System\Xml\Core\XmlValidatingReaderImpl.cs (3)
100XmlParserContext parserContext; 156internal XmlValidatingReaderImpl( string xmlFragment, XmlNodeType fragType, XmlParserContext context ) 174internal XmlValidatingReaderImpl( Stream xmlFragment, XmlNodeType fragType, XmlParserContext context )
System\Xml\Dom\XmlLoader.cs (5)
525XmlParserContext pc = new XmlParserContext(null, new XmlNamespaceManager( this.doc.NameTable ), null, null, null, null, this.doc.BaseURI, string.Empty, XmlSpace.None); 600private XmlParserContext GetContext ( XmlNode node ) { 661XmlParserContext pc = GetContext( parentNode ); 809private XmlReader CreateInnerXmlReader( String xmlFragment, XmlNodeType nt, XmlParserContext context, XmlDocument doc ) { 854XmlTextReaderImpl tempreader = new XmlTextReaderImpl( strValue, (XmlParserContext)null);
System\Xml\XPath\XPathNavigator.cs (1)
1773XmlParserContext context = new XmlParserContext(NameTable, mgr, null, XmlSpace.Default);