Base:
property
Name
System.Xml.XmlNode.Name
25 references to Name
Microsoft.Maui.Controls.SourceGen (1)
CodeBehindGenerator.cs (1)
167 if (attr.Name == "xmlns")
Microsoft.Web.Xdt.Extensions (2)
InsertOrAppendAttribute.cs (2)
94if (string.Equals(att.Name, AttributeName, StringComparison.OrdinalIgnoreCase)) 111if (string.Equals(att.Name, AttributeName, StringComparison.OrdinalIgnoreCase))
PresentationBuildTasks (1)
Microsoft\Build\Tasks\Windows\GenerateTemporaryTargetAssembly.cs (1)
799if (xmlAttribute.Name.Equals("Sdk", StringComparison.OrdinalIgnoreCase))
ReachFramework (2)
PrintConfig\PrtTicket_Editor.cs (2)
153if (attr.Name.StartsWith("xmlns:", StringComparison.Ordinal) || 154(attr.Name == "xmlns"))
System.Configuration.ConfigurationManager (3)
System\Configuration\HandlerBase.cs (1)
103SR.Format(SR.Config_base_unrecognized_attribute, node.Attributes[0].Name),
System\Configuration\RuntimeConfigurationRecord.cs (1)
127if (ConfigurationElement.IsLockAttributeName(attribute.Name))
System\Configuration\SingleTagSectionHandler.cs (1)
43result[attribute.Name] = attribute.Value;
System.Private.Xml (7)
System\Xml\Dom\XmlAttributeCollection.cs (3)
47&& name == node.Name) 88&& tmp.Name == node.Name
System\Xml\Serialization\SchemaObjectWriter.cs (3)
25return string.Compare(a1.Name, a2.Name, StringComparison.Ordinal); 207WriteAttribute(a.Name, a.NamespaceURI, a.Value);
System\Xml\Serialization\XmlSerializationWriter.cs (1)
944WriteAttribute(attr.Name, attr.NamespaceURI, attr.Value);
System.Security.Cryptography.Xml (9)
System\Security\Cryptography\Xml\CanonicalXmlAttribute.cs (2)
28strBuilder.Append($" {Name}=\""); 35byte[] rgbData = Encoding.UTF8.GetBytes(" " + Name + "=\"");
System\Security\Cryptography\Xml\SignedXmlDebugLog.cs (1)
554propagatedNamespace.Name,
System\Security\Cryptography\Xml\Utils.cs (6)
82bool attrIsAllowed = attr.Name == "xmlns" || attr.Name.StartsWith("xmlns:") || attr.Name == "xml:space" || attr.Name == "xml:lang" || attr.Name == "xml:base"; 86attrIsAllowed = attr.Name == expectedAttrNames[expectedInd];