56 instantiations of NameTable
PresentationBuildTasks (2)
BuildTasks\Microsoft\Build\Tasks\Windows\UidManager.cs (1)
501XmlNamespaceManager nsmgr = new XmlNamespaceManager(new NameTable());
Framework\System\Windows\Markup\ParserContext.cs (1)
446XmlNamespaceManager xmlnsMgr = new XmlNamespaceManager(new NameTable());
PresentationFramework (2)
src\Framework\System\Windows\Data\XmlNamespaceMappingCollection.cs (1)
33public XmlNamespaceMappingCollection() : base(new NameTable())
src\Framework\System\Windows\Markup\ParserContext.cs (1)
446XmlNamespaceManager xmlnsMgr = new XmlNamespaceManager(new NameTable());
System.Data.Services (1)
parent\Client\System\Data\Services\Client\XmlUtil.cs (1)
116NameTable table = new NameTable();
System.Data.Services.Client (1)
System\Data\Services\Client\XmlUtil.cs (1)
116NameTable table = new NameTable();
System.Data.Services.Design (2)
System\Data\EntityModel\DataServiceBuildProvider.cs (1)
341namespaceManager = new XmlNamespaceManager(new NameTable());
System\Data\EntityModel\EntityClassGenerator.cs (1)
348NameTable nameTable = new NameTable();
System.Data.SqlXml (7)
System\Xml\Xsl\IlGen\XmlILConstructAnalyzer.cs (2)
719private NameTable attrNames = new NameTable(); 851private XmlNamespaceManager nsmgr = new XmlNamespaceManager(new NameTable());
System\Xml\Xsl\Runtime\RtfNavigator.cs (1)
327return this.constr.GetNavigator(this.text, this.baseUri, new NameTable());
System\Xml\Xsl\Runtime\XmlQueryContext.cs (1)
59this.readerSettings = new QueryReaderSettings(new NameTable());
System\Xml\Xsl\Xslt\XsltLoader.cs (1)
72readerSettings = new QueryReaderSettings(new NameTable());
System\Xml\Xsl\XsltOld\Processor.cs (1)
88XmlNameTable nameTable = new NameTable();
System\Xml\Xsl\XsltOld\RecordBuilder.cs (1)
61this.nameTable = nameTable != null ? nameTable : new NameTable();
System.Runtime.Remoting (1)
metadata\wsdlparser.cs (1)
2889NameTable newTable = new NameTable();
System.Runtime.Serialization (3)
System\Runtime\Serialization\XPathQueryGenerator.cs (2)
106this.namespaces = new XmlNamespaceManager(new NameTable()); 113this.namespaces = new XmlNamespaceManager(new NameTable());
System\Xml\XmlBaseReader.cs (1)
3260this.nameTable = new NameTable();
System.ServiceModel (6)
System\ServiceModel\Description\WsdlExporter.cs (1)
461NameTable nameTable = new NameTable();
System\ServiceModel\Description\WsdlImporter.cs (1)
1366NameTable nameTable = new NameTable();
System\ServiceModel\Dispatcher\SeekableMessageNavigator.cs (1)
1122this.dom.nameTable = new NameTable();
System\ServiceModel\Dispatcher\XPathMessageContext.cs (2)
122: this(new NameTable()) 205internal readonly static XmlNamespaceManager Namespaces = new XmlNamespaceManager(new NameTable());
System\ServiceModel\Dispatcher\XPathMessageFilter.cs (1)
728XmlNamespaceManager resolver = new XmlNamespaceManager(new NameTable());
System.ServiceModel.Channels (1)
System\ServiceModel\Channels\XmlByteStreamReader.cs (1)
104this.nameTable = new NameTable();
System.Workflow.Runtime (1)
Tracking\TrackingProfileSerializer.cs (1)
73NameTable nt = new NameTable();
System.Xml (27)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
319this.xnt = new NameTable();
System\Xml\Core\XmlTextReader.cs (1)
95impl = new XmlTextReaderImpl( url, new NameTable() );
System\Xml\Core\XmlTextReaderImpl.cs (10)
411nt = new NameTable(); 493internal XmlTextReaderImpl( Stream input ) : this( string.Empty, input, new NameTable() ) { 497internal XmlTextReaderImpl( string url, Stream input ) : this( url, input, new NameTable() ) { 513internal XmlTextReaderImpl( TextReader input ) : this( string.Empty, input, new NameTable() ) { 517internal XmlTextReaderImpl( string url, TextReader input ) : this( url, input, new NameTable() ) { 534: this( ( context != null && context.NameTable != null ) ? context.NameTable : new NameTable() ) { 554: this( null == context || null == context.NameTable ? new NameTable() : context.NameTable ) { 578: this(null == context || null == context.NameTable ? new NameTable() : context.NameTable ) { 589public XmlTextReaderImpl( string url ) : this( url, new NameTable() ) { 8070nt = new NameTable();
System\Xml\Dom\XmlImplementation.cs (1)
19public XmlImplementation() : this( new NameTable() ) {
System\Xml\Schema\Inference\Infer.cs (1)
177this.nametable = new NameTable();
System\Xml\Schema\Preprocessor.cs (1)
412tempSchema.CompileSchemaInSet(new NameTable(), null, null); //compile built-in schema
System\Xml\Schema\XmlSchema.cs (1)
602get { if (nameTable == null) nameTable = new System.Xml.NameTable(); return nameTable; }
System\Xml\Schema\XmlSchemaCollection.cs (1)
43public XmlSchemaCollection() : this(new NameTable()) {
System\Xml\Schema\XmlSchemaSet.cs (1)
85public XmlSchemaSet() : this(new NameTable()) {
System\Xml\Schema\XmlValueConverter.cs (1)
3359XsdSimpleValue simpleValue = (XsdSimpleValue) SchemaType.Datatype.ParseValue((string) value, new NameTable(), nsResolver, true);
System\Xml\Serialization\XmlSchemas.cs (2)
334XmlNameTable nameTable = new System.Xml.NameTable(); 646XmlNameTable nameTable = new System.Xml.NameTable();
System\Xml\XmlNamespacemanager.cs (1)
63s_EmptyResolver = new XmlNamespaceManager( new NameTable() );
System\Xml\XPath\Internal\CompiledXPathExpr.cs (1)
79nsResolver = new XmlNamespaceManager(new NameTable());
System\Xml\XPath\XPathDocument.cs (1)
51this.nameTable = new NameTable();
System\Xml\XPath\XPathNavigator.cs (1)
1654XmlNamespaceManager mngr = new XmlNamespaceManager(new NameTable());
System\Xml\XPath\XPathNavigatorReader.cs (1)
1064get { return new NameTable(); }
System\Xml\Xslt\XsltContext.cs (1)
29protected XsltContext() : base(new NameTable()) {}
System.Xml.Linq (2)
System\Xml\Linq\XLinq.cs (1)
8929XmlNameTable nameTable = new NameTable();
System\Xml\Linq\XNodeNavigator.cs (1)
664XmlNameTable nameTable = new NameTable();
18 references to NameTable
System.Data.Services (2)
parent\Client\System\Data\Services\Client\XmlUtil.cs (2)
114private static NameTable CreateAtomNameTable() 116NameTable table = new NameTable();
System.Data.Services.Client (2)
System\Data\Services\Client\XmlUtil.cs (2)
114private static NameTable CreateAtomNameTable() 116NameTable table = new NameTable();
System.Data.Services.Design (1)
System\Data\EntityModel\EntityClassGenerator.cs (1)
348NameTable nameTable = new NameTable();
System.Data.SqlXml (1)
System\Xml\Xsl\IlGen\XmlILConstructAnalyzer.cs (1)
719private NameTable attrNames = new NameTable();
System.Runtime.Remoting (1)
metadata\wsdlparser.cs (1)
2889NameTable newTable = new NameTable();
System.ServiceModel (6)
System\ServiceModel\Description\WsdlExporter.cs (1)
461NameTable nameTable = new NameTable();
System\ServiceModel\Description\WsdlImporter.cs (1)
1366NameTable nameTable = new NameTable();
System\ServiceModel\Dispatcher\SeekableMessageNavigator.cs (1)
59NameTable nameTable;
System\ServiceModel\Dispatcher\XPathMessageContext.cs (3)
126public XPathMessageContext(NameTable table) 135static NameTable ArgValidator(NameTable table)
System.ServiceModel.Channels (1)
System\ServiceModel\Channels\XmlByteStreamReader.cs (1)
16NameTable nameTable;
System.Workflow.Runtime (1)
Tracking\TrackingProfileSerializer.cs (1)
73NameTable nt = new NameTable();
System.Xml (2)
System\Xml\Schema\Inference\Infer.cs (1)
118private NameTable nametable;
System\Xml\Xslt\XsltContext.cs (1)
28protected XsltContext(NameTable table) : base(table) {}
WindowsBase (1)
Base\MS\Internal\IO\Packaging\PartBasedPackageProperties.cs (1)
960private NameTable _nameTable;