15 overrides of LocalName
System.Private.Xml (15)
System\Xml\Dom\XmlAttribute.cs (1)
74public override string LocalName
System\Xml\Dom\XmlCDataSection.cs (1)
27public override string LocalName
System\Xml\Dom\XmlComment.cs (1)
23public override string LocalName
System\Xml\Dom\XmlDeclaration.cs (1)
146public override string LocalName
System\Xml\Dom\XmlDocument.cs (1)
398public override string LocalName
System\Xml\Dom\XmlDocumentFragment.cs (1)
63public override string LocalName
System\Xml\Dom\XmlDocumentType.cs (1)
47public override string LocalName
System\Xml\Dom\XmlElement.cs (1)
90public override string LocalName
System\Xml\Dom\XmlEntity.cs (1)
53public override string LocalName
System\Xml\Dom\XmlEntityReference.cs (1)
56public override string LocalName
System\Xml\Dom\XmlNotation.cs (1)
30public override string LocalName
System\Xml\Dom\XmlProcessingInstruction.cs (1)
29public override string LocalName => Name;
System\Xml\Dom\XmlSignificantWhiteSpace.cs (1)
28public override string LocalName
System\Xml\Dom\XmlText.cs (1)
31public override string LocalName
System\Xml\Dom\XmlWhitespace.cs (1)
29public override string LocalName
63 references to LocalName
Microsoft.Build.Engine (3)
Engine\Project.cs (2)
4062ProjectErrorUtilities.VerifyThrowInvalidProject(importedChildNode.LocalName != XMakeElements.visualStudioProject, 4066ProjectErrorUtilities.VerifyThrowInvalidProject(importedChildNode.LocalName == XMakeElements.project,
Engine\ToolsetState.cs (1)
235ProjectErrorUtilities.VerifyThrowInvalidProject(topLevelNode.LocalName == XMakeElements.project,
PresentationFramework (2)
MS\Internal\IO\Packaging\XmlFixedPageInfo.cs (2)
39if (_pageNode.LocalName != _fixedPageName || _pageNode.NamespaceURI != ElementTableKey.FixedMarkupNamespace) 42_pageNode.NamespaceURI, _pageNode.LocalName,
PresentationFramework-SystemXml (1)
SystemXmlExtension.cs (1)
81return string.Concat(prefix, ":", node.LocalName);
ReachFramework (5)
PrintConfig\PrtTicket_Editor.cs (5)
109((rootChild.LocalName != PrintSchemaTags.Framework.Feature) && 110(rootChild.LocalName != PrintSchemaTags.Framework.ParameterInit) && 111(rootChild.LocalName != PrintSchemaTags.Framework.Property))) 257(child.LocalName != schemaTag) || 321(child.LocalName != schemaTag) ||
System.Data.Common (16)
System\Data\XmlDataLoader.cs (3)
502if (parentElement.LocalName == Keywords.XSD_SCHEMA && parentElement.NamespaceURI == Keywords.XSDNS || 503parentElement.LocalName == Keywords.SQL_SYNC && parentElement.NamespaceURI == Keywords.UPDGNS || 504parentElement.LocalName == Keywords.XDR_SCHEMA && parentElement.NamespaceURI == Keywords.XDRNS)
System\Data\XMLSchema.cs (1)
74if (node != null && node.LocalName == name && node.NamespaceURI == ns)
System\Data\XmlToDatasetMap.cs (4)
51_id.LocalName = node.LocalName; 449tableSchemaInfo = (TableSchemaInfo?)(fIgnoreNamespace ? _tableSchemaMap[nodeRegion.LocalName] : _tableSchemaMap[nodeRegion]); 455return tableSchemaInfo.ColumnsSchemaMap[node.LocalName]; 481tableSchemaInfo = (TableSchemaInfo?)(fIgnoreNamespace ? _tableSchemaMap[node.LocalName] : _tableSchemaMap[node]);
System\Xml\DataPointer.cs (2)
413string name = _node.LocalName; 669if (n.LocalName == _column.EncodedColumnName && n.NamespaceURI == _column.Namespace)
System\Xml\DataSetMappper.cs (1)
156object cid = GetIdentity(node.LocalName, node.NamespaceURI);
System\Xml\XPathNodePointer.cs (5)
191if (IsNamespaceNode(nt, _node.NamespaceURI) && _node.LocalName == StrXmlNS) 194return _node.LocalName; 222if (_node.LocalName == StrXmlNS) 225return _node.LocalName; 1294if (n.LocalName == _column.EncodedColumnName && n.NamespaceURI == _column.Namespace)
System.Private.DataContractSerialization (3)
System\Runtime\Serialization\SchemaImporter.cs (3)
1308throw new InvalidDataContractException(SR.Format(SR.GenericAnnotationHasInvalidAttributeValue, argumentElement.LocalName, argumentElement.NamespaceURI, type.Name, nestedLevelAttribute.Value, nestedLevelAttribute.LocalName, Globals.TypeOfInt.Name)); 1323throw new InvalidDataContractException(SR.Format(SR.GenericAnnotationHasInvalidAttributeValue, typeElement.LocalName, typeElement.NamespaceURI, type.Name, typeNestedLevelsAttribute.Value, typeNestedLevelsAttribute.LocalName, Globals.TypeOfInt.Name)); 1418ThrowTypeCannotBeImportedException(typeName.Name, typeName.Namespace, SR.Format(SR.InvalidAnnotationExpectingText, xmlElement.LocalName, xmlElement.NamespaceURI, child.LocalName, child.NamespaceURI));
System.Private.Xml (17)
System\Xml\Dom\DocumentXPathNavigator.cs (5)
135string localName = _source.LocalName; 917&& child.LocalName == localName 1027|| following.LocalName != localName 1130&& sibling.LocalName == localName 2393return Ref.Equal(node.LocalName, localNameAtom) && Ref.Equal(node.NamespaceURI, nsAtom);
System\Xml\Dom\XmlAttributeCollection.cs (2)
123int offset = FindNodeOffset(node.LocalName, node.NamespaceURI); 322XmlAttribute? defattr = parent.OwnerDocument!.GetDefaultAttribute((XmlElement)parent, retNode.Prefix, retNode.LocalName, retNode.NamespaceURI);
System\Xml\Dom\XmlDocument.cs (2)
970newNode = CreateElement(node.Prefix, node.LocalName, node.NamespaceURI); 978newNode = CreateAttribute(node.Prefix, node.LocalName, node.NamespaceURI);
System\Xml\Dom\XmlElementList.cs (1)
170(Ref.Equal(_localName, _asterisk) || Ref.Equal(curNode.LocalName, _localName)) &&
System\Xml\Dom\XmlNamedNodemap.cs (2)
35int offset = FindNodeOffset(node.LocalName, node.NamespaceURI); 135if (node.LocalName == localName && node.NamespaceURI == namespaceURI)
System\Xml\Dom\XmlNode.cs (1)
1260if (n.NodeType == XmlNodeType.Element && n.LocalName == localname && n.NamespaceURI == ns)
System\Xml\Dom\XmlNodeReader.cs (1)
158return _curNode.LocalName;
System\Xml\Serialization\_Events.cs (1)
151get { return _xmlNode.LocalName; }
System\Xml\Serialization\XmlSerializationWriter.cs (2)
796if (node.LocalName != name || node.NamespaceURI != ns) 797throw new InvalidOperationException(SR.Format(SR.XmlElementNameMismatch, node.LocalName, node.NamespaceURI, name, ns));
System.Security.Cryptography.Xml (13)
System\Security\Cryptography\Xml\AttributeSortOrder.cs (2)
22return string.CompareOrdinal(nodeA.LocalName, nodeB.LocalName);
System\Security\Cryptography\Xml\EncryptedXml.cs (1)
849XmlNode dummy = parent.OwnerDocument!.CreateElement(parent.Prefix, parent.LocalName, parent.NamespaceURI);
System\Security\Cryptography\Xml\NamespaceSortOrder.cs (2)
24return string.CompareOrdinal(nodeA.LocalName, nodeB.LocalName);
System\Security\Cryptography\Xml\Transform.cs (2)
214string key = ((attrib.Prefix.Length > 0) ? attrib.Prefix + ":" + attrib.LocalName : attrib.LocalName);
System\Security\Cryptography\Xml\Utils.cs (5)
103return n.NodeType == XmlNodeType.Attribute && (n.Prefix.Equals("xmlns") || (n.Prefix.Length == 0 && n.LocalName.Equals("xmlns"))); 114bool b1 = n.NodeType == XmlNodeType.Attribute && n.Prefix.Length == 0 && n.LocalName.Equals("xmlns"); 288if (attribNode.LocalName == "xmlns" || attribNode.Prefix == "xmlns") 476string name = ((attrib.Prefix.Length > 0) ? attrib.Prefix + ":" + attrib.LocalName : attrib.LocalName);
System\Security\Cryptography\Xml\XmlLicenseTransform.cs (1)
167if ((issuerList[i]!.LocalName == Consts.ElementIssuer) &&
System.ServiceModel.Primitives (3)
System\IdentityModel\Tokens\GenericXmlSecurityKeyIdentifierClause.cs (2)
48if (originalNode.LocalName != newNode.LocalName || originalNode.InnerText != newNode.InnerText)
System\ServiceModel\Security\XmlHelper.cs (1)
98if (child.LocalName == childLocalName && child.NamespaceURI == childNamespace)