18 writes to ElementName
PresentationFramework (4)
System\Windows\Annotations\Annotation.cs (1)
60[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.CoreSchemaNamespace, ElementName = AnnotationXmlConstants.Elements.Annotation)]
System\Windows\Annotations\AnnotationResource.cs (1)
38[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.CoreSchemaNamespace, ElementName = AnnotationXmlConstants.Elements.Resource)]
System\Windows\Annotations\LocatorGroup.cs (1)
36[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.CoreSchemaNamespace, ElementName = AnnotationXmlConstants.Elements.ContentLocatorGroup)]
System\Windows\Annotations\LocatorPartList.cs (1)
41[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.CoreSchemaNamespace, ElementName = AnnotationXmlConstants.Elements.ContentLocator)]
System.Data.Common (1)
System\Data\Common\ObjectStorage.cs (1)
621key.Value.ElementName = attribute.ElementName;
System.ServiceModel.Primitives (2)
System\ServiceModel\Description\MetadataLocation.cs (1)
10[XmlRoot(ElementName = MetadataStrings.MetadataExchangeStrings.Location, Namespace = MetadataStrings.MetadataExchangeStrings.Namespace)]
System\ServiceModel\Dispatcher\XmlSerializerObjectSerializer.cs (1)
51xmlRoot.ElementName = _rootName;
System.ServiceModel.Syndication (11)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (2)
16[XmlRoot(ElementName = Atom10Constants.FeedTag, Namespace = Atom10Constants.Atom10Namespace)] 1222[XmlRoot(ElementName = Atom10Constants.FeedTag, Namespace = Atom10Constants.Atom10Namespace)]
System\ServiceModel\Syndication\Atom10ItemFormatter.cs (2)
11[XmlRoot(ElementName = Atom10Constants.EntryTag, Namespace = Atom10Constants.Atom10Namespace)] 140[XmlRoot(ElementName = Atom10Constants.EntryTag, Namespace = Atom10Constants.Atom10Namespace)]
System\ServiceModel\Syndication\AtomPub10CategoriesDocumentFormatter.cs (1)
11[XmlRoot(ElementName = App10Constants.Categories, Namespace = App10Constants.Namespace)]
System\ServiceModel\Syndication\AtomPub10ServiceDocumentFormatter.cs (2)
15[XmlRoot(ElementName = App10Constants.Service, Namespace = App10Constants.Namespace)] 635[XmlRoot(ElementName = App10Constants.Service, Namespace = App10Constants.Namespace)]
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
14[XmlRoot(ElementName = Rss20Constants.RssTag, Namespace = Rss20Constants.Rss20Namespace)] 1199[XmlRoot(ElementName = Rss20Constants.RssTag, Namespace = Rss20Constants.Rss20Namespace)]
System\ServiceModel\Syndication\Rss20ItemFormatter.cs (2)
11[XmlRoot(ElementName = Rss20Constants.ItemTag, Namespace = Rss20Constants.Rss20Namespace)] 163[XmlRoot(ElementName = Rss20Constants.ItemTag, Namespace = Rss20Constants.Rss20Namespace)]
11 references to ElementName
PresentationFramework (1)
MS\Internal\Annotations\Serializer.cs (1)
75writer.WriteStartElement(_attribute.ElementName, _attribute.Namespace);
System.Data.Common (4)
System\Data\Common\ObjectStorage.cs (4)
621key.Value.ElementName = attribute.ElementName; 646(x.Value.ElementName == y.Value.ElementName) && // all attribute elements are equal 654return unchecked(obj.Key.GetHashCode() + obj.Value.ElementName.GetHashCode());
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\XmlDataContract.cs (1)
170string elementName = xmlRootAttribute.ElementName;
System.Private.Xml (5)
System\Xml\Serialization\XmlReflectionImporter.cs (4)
269if (root.ElementName.Length > 0) 270element.Name = XmlConvert.EncodeLocalName(root.ElementName); 1331if (structAttrs.XmlRoot.ElementName.Length > 0) 1332xmlElement.ElementName = structAttrs.XmlRoot.ElementName;
System\Xml\Serialization\XmlRootAttribute.cs (1)
95get { return $"{_ns ?? string.Empty}:{ElementName}:{_nullable}"; }