13 writes to Namespace
dotnet-svcutil-lib (13)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBaseReader.cs (6)
270endElementNode.Namespace = elementNode.Namespace; 382attributeNode.Namespace = ns; 383attributeNode.AttributeText.Namespace = ns; 740attributeNode.Namespace = LookupNamespace(prefix); 744attributeNode.Namespace = NamespaceManager.EmptyNamespace; 746attributeNode.AttributeText.Namespace = attributeNode.Namespace;
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBinaryReader.cs (6)
416elementNode.Namespace = LookupNamespace(PrefixHandleType.Empty); 424elementNode.Namespace = LookupNamespace(elementNode.Prefix); 432elementNode.Namespace = LookupNamespace(PrefixHandleType.Empty); 440elementNode.Namespace = LookupNamespace(elementNode.Prefix); 474elementNode.Namespace = LookupNamespace(prefix); 508elementNode.Namespace = LookupNamespace(prefix);
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlUTF8TextReader.cs (1)
980elementNode.Namespace = LookupNamespace(elementNode.Prefix);
32 references to Namespace
dotnet-svcutil-lib (32)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBaseReader.cs (32)
270endElementNode.Namespace = elementNode.Namespace; 685if (_node.Namespace.Prefix.IsEmpty) 688_localName = _node.Namespace.Prefix.GetString(NameTable); 746attributeNode.AttributeText.Namespace = attributeNode.Namespace; 764if (attributeNode2.QNameType == QNameType.Normal && attributeNode1.LocalName == attributeNode2.LocalName && attributeNode1.Namespace.Uri == attributeNode2.Namespace.Uri) 766XmlExceptionHelper.ThrowDuplicateAttribute(this, attributeNode1.Prefix.GetString(), attributeNode2.Prefix.GetString(), attributeNode1.LocalName.GetString(), attributeNode1.Namespace.Uri.GetString()); 776if (attributeNode2.QNameType == QNameType.Xmlns && attributeNode1.Namespace.Prefix == attributeNode2.Namespace.Prefix) 777XmlExceptionHelper.ThrowDuplicateAttribute(this, xmlns, xmlns, attributeNode1.Namespace.Prefix.GetString(), xmlnsNamespace); 800XmlExceptionHelper.ThrowDuplicateXmlnsAttribute(this, attributeNodes[attribute1].Namespace.Prefix.GetString(), xmlnsNamespace); 802XmlExceptionHelper.ThrowDuplicateAttribute(this, attributeNodes[attribute1].Prefix.GetString(), attributeNodes[attribute2].Prefix.GetString(), attributeNodes[attribute1].LocalName.GetString(), attributeNodes[attribute1].Namespace.Uri.GetString()); 909_ns = _node.Namespace.Uri.GetString(NameTable); 963if (_node.Namespace.Prefix.IsEmpty) 1085PrefixHandle prefix = _node.Namespace.Prefix; 1127PrefixHandle prefix = _node.Namespace.Prefix; 1248XmlExceptionHelper.ThrowEndElementExpected(this, elementNode.LocalName.GetString(), elementNode.Namespace.Uri.GetString()); 2053return this.Namespace.Prefix == localName; 2066return this.Namespace.Prefix == localName; 2074return this.Namespace.IsUri(ns); 2087return this.Namespace.IsUri(ns); 2100return this.LocalName == localName && this.Namespace.IsUri(ns); 2105return this.Namespace.Prefix == localName && ns == xmlnsNamespace; 2113return this.LocalName == localName && this.Namespace.IsUri(ns); 2118return this.Namespace.Prefix == localName && ns.Value == xmlnsNamespace; 2130return prefix == xmlns && this.Namespace.Prefix == localName; 2152return this.Namespace.Uri.TryGetDictionaryString(out ns); 2186return Namespace.Uri.GetString(); 2520i = attribute1.Namespace.Uri.CompareTo(attribute2.Namespace.Uri); 2526i = attribute1.Namespace.Prefix.CompareTo(attribute2.Namespace.Prefix);