50 references to LocalName
System.Private.DataContractSerialization (50)
System\Runtime\Serialization\Json\XmlJsonReader.cs (6)
1059
elementNode.
LocalName
.SetValue(elementNode.NameOffset, actualOffset - elementNode.NameOffset);
1124
attribute.
LocalName
.SetConstantValue(StringHandleConstStringType.Type);
1291
elementNode.
LocalName
.SetConstantValue(elementName);
1435
attribute.
LocalName
.SetValue(offset + 1, 6);
1507
attribute.
LocalName
.SetConstantValue(StringHandleConstStringType.Item);
1514
elementNode.
LocalName
.SetConstantValue(StringHandleConstStringType.Item);
System\Xml\XmlBaseReader.cs (27)
165
if (node.
LocalName
!= "standalone")
180
if (node.
LocalName
!= localName)
367
if (attributeNode.
LocalName
== "lang")
371
else if (attributeNode.
LocalName
== "space")
657
_localName = _node.
LocalName
.GetString(NameTable);
741
if (attributeNode2.QNameType == QNameType.Normal && attributeNode1.
LocalName
== attributeNode2.
LocalName
&& attributeNode1.Namespace.Uri == attributeNode2.Namespace.Uri)
743
XmlExceptionHelper.ThrowDuplicateAttribute(this, attributeNode1.Prefix.GetString(), attributeNode2.Prefix.GetString(), attributeNode1.
LocalName
.GetString(), attributeNode1.Namespace.Uri.GetString());
778
XmlExceptionHelper.ThrowDuplicateAttribute(this, attributeNodes[attribute1].Prefix.GetString(), attributeNodes[attribute2].Prefix.GetString(), attributeNodes[attribute1].
LocalName
.GetString(), attributeNodes[attribute1].Namespace.Uri.GetString());
1024
return (_node.NodeType == XmlNodeType.Element || IsStartElement()) && _node.Prefix == prefix && _node.
LocalName
== localName;
1033
return (_node.NodeType == XmlNodeType.Element || IsStartElement()) && _node.
LocalName
== localName && _node.IsNamespaceUri(namespaceUri);
1041
return (_node.NodeType == XmlNodeType.Element || IsStartElement()) && _node.
LocalName
== localName && _node.IsNamespaceUri(namespaceUri);
1054
StringHandle localName = _node.
LocalName
;
1095
StringHandle localName = _node.
LocalName
;
1257
XmlExceptionHelper.ThrowEndElementExpected(this, elementNode.
LocalName
.GetString(), elementNode.Namespace.Uri.GetString());
1887
string localName = _elementNodes![i].
LocalName
.GetString();
1911
byte[] localNameBuffer = _node.
LocalName
.GetString(out localNameOffset, out localNameLength);
1923
byte[] localNameBuffer = attributeNode.
LocalName
.GetString(out localNameOffset, out localNameLength);
1944
byte[] localNameBuffer = _node.
LocalName
.GetString(out localNameOffset, out localNameLength);
2202
return this.
LocalName
== localName;
2215
return this.
LocalName
== localName;
2254
return this.
LocalName
== localName && this.Namespace.IsUri(ns);
2267
return this.
LocalName
== localName && this.Namespace.IsUri(ns);
2280
return this.Prefix == prefix && this.
LocalName
== localName;
2293
return this.
LocalName
.TryGetDictionaryString(out localName);
2673
i = attribute1.
LocalName
.CompareTo(attribute2.
LocalName
);
System\Xml\XmlBinaryReader.cs (12)
428
ReadName(elementNode.
LocalName
);
436
ReadName(elementNode.
LocalName
);
444
ReadDictionaryName(elementNode.
LocalName
);
452
ReadDictionaryName(elementNode.
LocalName
);
486
ReadName(elementNode.
LocalName
);
520
ReadDictionaryName(elementNode.
LocalName
);
735
ReadName(attributeNode.
LocalName
);
742
ReadName(attributeNode.
LocalName
);
750
ReadDictionaryName(attributeNode.
LocalName
);
757
ReadDictionaryName(attributeNode.
LocalName
);
818
ReadDictionaryName(attributeNode.
LocalName
);
851
ReadName(attributeNode.
LocalName
);
System\Xml\XmlUTF8TextReader.cs (5)
650
declarationNode.
LocalName
.SetValue(localNameOffset, localNameLength);
837
attributeNode.
LocalName
.SetValue(_localName);
845
attributeNode.
LocalName
.SetValue(_localName);
946
ReadQualifiedName(elementNode.Prefix, elementNode.
LocalName
);
987
XmlExceptionHelper.ThrowTagMismatch(this, elementNode.Prefix.GetString(), elementNode.
LocalName
.GetString(), _prefix.GetString(), _localName.GetString());