41 references to LocalName
dotnet-svcutil-lib (41)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBaseReader.cs (24)
180if (node.LocalName != "standalone") 195if (node.LocalName != localName) 391if (attributeNode.LocalName == "lang") 395else if (attributeNode.LocalName == "space") 680_localName = _node.LocalName.GetString(NameTable); 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()); 802XmlExceptionHelper.ThrowDuplicateAttribute(this, attributeNodes[attribute1].Prefix.GetString(), attributeNodes[attribute2].Prefix.GetString(), attributeNodes[attribute1].LocalName.GetString(), attributeNodes[attribute1].Namespace.Uri.GetString()); 1038return (_node.NodeType == XmlNodeType.Element || IsStartElement()) && _node.Prefix == prefix && _node.LocalName == localName; 1047return (_node.NodeType == XmlNodeType.Element || IsStartElement()) && _node.LocalName == localName && _node.IsNamespaceUri(namespaceUri); 1056return (_node.NodeType == XmlNodeType.Element || IsStartElement()) && _node.LocalName == localName && _node.IsNamespaceUri(namespaceUri); 1070StringHandle localName = _node.LocalName; 1112StringHandle localName = _node.LocalName; 1248XmlExceptionHelper.ThrowEndElementExpected(this, elementNode.LocalName.GetString(), elementNode.Namespace.Uri.GetString()); 1853string localName = _elementNodes[i].LocalName.GetString(); 2048return this.LocalName == localName; 2061return this.LocalName == localName; 2100return this.LocalName == localName && this.Namespace.IsUri(ns); 2113return this.LocalName == localName && this.Namespace.IsUri(ns); 2125return this.Prefix == prefix && this.LocalName == localName; 2138return this.LocalName.TryGetDictionaryString(out localName); 2517i = attribute1.LocalName.CompareTo(attribute2.LocalName);
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBinaryReader.cs (12)
414ReadName(elementNode.LocalName); 422ReadName(elementNode.LocalName); 430ReadDictionaryName(elementNode.LocalName); 438ReadDictionaryName(elementNode.LocalName); 472ReadName(elementNode.LocalName); 506ReadDictionaryName(elementNode.LocalName); 720ReadName(attributeNode.LocalName); 727ReadName(attributeNode.LocalName); 735ReadDictionaryName(attributeNode.LocalName); 742ReadDictionaryName(attributeNode.LocalName); 803ReadDictionaryName(attributeNode.LocalName); 836ReadName(attributeNode.LocalName);
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlUTF8TextReader.cs (5)
670declarationNode.LocalName.SetValue(localNameOffset, localNameLength); 858attributeNode.LocalName.SetValue(_localName); 866attributeNode.LocalName.SetValue(_localName); 967ReadQualifiedName(elementNode.Prefix, elementNode.LocalName); 1008XmlExceptionHelper.ThrowTagMismatch(this, elementNode.Prefix.GetString(), elementNode.LocalName.GetString(), _prefix.GetString(), _localName.GetString());