Base:
property
Name
System.Xml.XmlNode.Name
21 references to Name
IOperationGenerator (2)
IOperationClassWriter.Verifier.cs (2)
38if (abstractNode.Comments?.Elements?[0].Name != "summary") 46if (prop.Comments?.Elements?[0].Name != "summary" && !prop.IsInternal && !prop.IsOverride)
PresentationBuildTasks (2)
Microsoft\Build\Tasks\Windows\GenerateTemporaryTargetAssembly.cs (2)
629if (root.ChildNodes[i] is XmlElement nodeGroup && string.Equals(nodeGroup.Name, groupName, StringComparison.OrdinalIgnoreCase)) 640if (nodeGroup.ChildNodes[j] is XmlElement nodeItem && string.Equals(nodeItem.Name, sItemName, StringComparison.OrdinalIgnoreCase))
PresentationFramework (3)
MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (1)
654if (node.Name.Equals(xmlName))
MS\Internal\Globalization\BamlTreeMap.cs (1)
645if (element.Name == LocComments.LocCommentsElement
MS\Internal\Globalization\BamlTreeUpdater.cs (1)
472string className = bamlTreeMap.Resolver.ResolveFormattingTagToClass(child.Name);
System.Configuration.ConfigurationManager (1)
System\Configuration\NameValueFileSectionHandler.cs (1)
56if (section.Name != doc.DocumentElement.Name)
System.Data.Common (2)
System\Data\DataSet.cs (2)
2287if (DataSetName != root.Name && _namespaceURI != root.NamespaceURI && 2288Tables.Contains(root.Name, (root.NamespaceURI.Length == 0) ? null : root.NamespaceURI, false, true))
System.Private.Xml (4)
System\Xml\Serialization\ReflectionXmlSerializationWriter.cs (3)
265if (element.Name == elem.Name && element.Namespace == elem.NamespaceURI) 274throw CreateChoiceIdentifierValueException(choice.Mapping!.TypeDesc!.FullName, choice.MemberName!, elem.Name, elem.NamespaceURI); 283throw CreateUnknownAnyElementException(elem.Name, elem.NamespaceURI);
System\Xml\Serialization\XmlSchemaImporter.cs (1)
1527if (e.Name == "keepNamespaceDeclarations")
System.Security.Cryptography.Xml (5)
System\Security\Cryptography\Xml\CanonicalXmlElement.cs (4)
68strBuilder.Append('<').Append(Name); 94strBuilder.Append($"</{Name}>"); 139rgbData = Encoding.UTF8.GetBytes("<" + Name); 167rgbData = Encoding.UTF8.GetBytes("</" + Name + ">");
System\Security\Cryptography\Xml\DSAKeyValue.cs (1)
152if (value.Name != KeyValueElementName
System.ServiceModel.Federation.Tests (2)
WSTrustChannelSecurityTokenProviderTest.cs (2)
74Assert.Equal(eln1, trustRequest.AdditionalXmlElements[0].Name); 75Assert.Equal(eln2, trustRequest.AdditionalXmlElements[1].Name);