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