14 writes to Namespace
System.Private.DataContractSerialization (14)
System\Runtime\Serialization\Json\XmlJsonReader.cs (1)
1515elementNode.Namespace = ns;
System\Xml\XmlBaseReader.cs (6)
245endElementNode.Namespace = elementNode.Namespace; 358attributeNode.Namespace = ns; 359attributeNode.AttributeText!.Namespace = ns; 717attributeNode.Namespace = LookupNamespace(prefix); 721attributeNode.Namespace = NamespaceManager.EmptyNamespace; 723attributeNode.AttributeText!.Namespace = attributeNode.Namespace;
System\Xml\XmlBinaryReader.cs (6)
430elementNode.Namespace = LookupNamespace(PrefixHandleType.Empty); 438elementNode.Namespace = LookupNamespace(elementNode.Prefix); 446elementNode.Namespace = LookupNamespace(PrefixHandleType.Empty); 454elementNode.Namespace = LookupNamespace(elementNode.Prefix); 488elementNode.Namespace = LookupNamespace(prefix); 522elementNode.Namespace = LookupNamespace(prefix);
System\Xml\XmlUTF8TextReader.cs (1)
959elementNode.Namespace = LookupNamespace(elementNode.Prefix);
40 references to Namespace
System.Private.DataContractSerialization (40)
System\Runtime\Serialization\Json\XmlJsonReader.cs (6)
761this.Node.Namespace.Uri.SetValue(0, 0); 1061elementNode.Namespace.Uri.SetValue(elementNode.NameOffset, 0); 1125attribute.Namespace.Uri.SetValue(0, 0); 1292elementNode.Namespace.Uri.SetValue(elementNode.NameOffset, 0); 1436attribute.Namespace.Uri.SetValue(0, 0); 1508attribute.Namespace.Uri.SetValue(0, 0);
System\Xml\XmlBaseReader.cs (34)
245endElementNode.Namespace = elementNode.Namespace; 662if (_node.Namespace.Prefix.IsEmpty) 665_localName = _node.Namespace.Prefix.GetString(NameTable); 723attributeNode.AttributeText!.Namespace = attributeNode.Namespace; 741if (attributeNode2.QNameType == QNameType.Normal && attributeNode1.LocalName == attributeNode2.LocalName && attributeNode1.Namespace.Uri == attributeNode2.Namespace.Uri) 743XmlExceptionHelper.ThrowDuplicateAttribute(this, attributeNode1.Prefix.GetString(), attributeNode2.Prefix.GetString(), attributeNode1.LocalName.GetString(), attributeNode1.Namespace.Uri.GetString()); 753if (attributeNode2.QNameType == QNameType.Xmlns && attributeNode1.Namespace.Prefix == attributeNode2.Namespace.Prefix) 754XmlExceptionHelper.ThrowDuplicateAttribute(this, xmlns, xmlns, attributeNode1.Namespace.Prefix.GetString(), xmlnsNamespace); 776XmlExceptionHelper.ThrowDuplicateXmlnsAttribute(this, attributeNodes[attribute1].Namespace.Prefix.GetString(), xmlnsNamespace); 778XmlExceptionHelper.ThrowDuplicateAttribute(this, attributeNodes[attribute1].Prefix.GetString(), attributeNodes[attribute2].Prefix.GetString(), attributeNodes[attribute1].LocalName.GetString(), attributeNodes[attribute1].Namespace.Uri.GetString()); 888_ns = _node.Namespace.Uri.GetString(NameTable); 942if (_node.Namespace.Prefix.IsEmpty) 1069PrefixHandle prefix = _node.Namespace.Prefix; 1110PrefixHandle prefix = _node.Namespace.Prefix; 1257XmlExceptionHelper.ThrowEndElementExpected(this, elementNode.LocalName.GetString(), elementNode.Namespace.Uri.GetString()); 1932byte[] prefixBuffer = attributeNode.Namespace.Prefix.GetString(out prefixOffset, out prefixLength); 1934byte[] nsBuffer = attributeNode.Namespace.Uri.GetString(out nsOffset, out nsLength); 2207return this.Namespace.Prefix == localName; 2220return this.Namespace.Prefix == localName; 2228return this.Namespace.IsUri(ns); 2241return this.Namespace.IsUri(ns); 2254return this.LocalName == localName && this.Namespace.IsUri(ns); 2259return this.Namespace.Prefix == localName && ns == xmlnsNamespace; 2267return this.LocalName == localName && this.Namespace.IsUri(ns); 2272return this.Namespace.Prefix == localName && ns.Value == xmlnsNamespace; 2285return prefix == xmlns && this.Namespace.Prefix == localName; 2307return this.Namespace.Uri.TryGetDictionaryString(out ns); 2341return Namespace.Uri.GetString(); 2676i = attribute1.Namespace.Uri.CompareTo(attribute2.Namespace.Uri); 2682i = attribute1.Namespace.Prefix.CompareTo(attribute2.Namespace.Prefix);