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