25 writes to ElementName
PresentationFramework (4)
src\Framework\System\Windows\Annotations\Annotation.cs (1)
73
[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.CoreSchemaNamespace,
ElementName
= AnnotationXmlConstants.Elements.Annotation)]
src\Framework\System\Windows\Annotations\AnnotationResource.cs (1)
51
[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.CoreSchemaNamespace,
ElementName
= AnnotationXmlConstants.Elements.Resource)]
src\Framework\System\Windows\Annotations\LocatorGroup.cs (1)
46
[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.CoreSchemaNamespace,
ElementName
= AnnotationXmlConstants.Elements.ContentLocatorGroup)]
src\Framework\System\Windows\Annotations\LocatorPartList.cs (1)
49
[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.CoreSchemaNamespace,
ElementName
= AnnotationXmlConstants.Elements.ContentLocator)]
System.Data (1)
fx\src\data\System\Data\Common\ObjectStorage.cs (1)
524
key.Value.
ElementName
= attribute.ElementName;
System.Data.Services (2)
System\Data\Services\Serializers\SyndicationSerializer.cs (2)
1176
[XmlRoot(
ElementName
= XmlConstants.AtomInlineElementName, Namespace = XmlConstants.DataWebMetadataNamespace)]
1230
[XmlRoot(
ElementName
= XmlConstants.AtomInlineElementName, Namespace = XmlConstants.DataWebMetadataNamespace)]
System.ServiceModel (16)
System\ServiceModel\Description\MetadataLocation.cs (1)
13
[XmlRoot(
ElementName
= MetadataStrings.MetadataExchangeStrings.Location, Namespace = MetadataStrings.MetadataExchangeStrings.Namespace)]
System\ServiceModel\Description\MetadataReference.cs (1)
17
[XmlRoot(
ElementName
= MetadataStrings.MetadataExchangeStrings.MetadataReference, Namespace = MetadataStrings.MetadataExchangeStrings.Namespace)]
System\ServiceModel\Description\MetadataSection.cs (1)
17
[XmlRoot(
ElementName
= MetadataStrings.MetadataExchangeStrings.MetadataSection, Namespace = MetadataStrings.MetadataExchangeStrings.Namespace)]
System\ServiceModel\Dispatcher\XmlSerializerObjectSerializer.cs (1)
55
xmlRoot.
ElementName
= this.rootName;
System\ServiceModel\Dispatcher\XPathMessageFilter.cs (1)
25
[XmlRoot(
ElementName
= "XPathMessageFilter", Namespace = XPathMessageFilter.RootNamespace)]
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (2)
22
[XmlRoot(
ElementName
= Atom10Constants.FeedTag, Namespace = Atom10Constants.Atom10Namespace)]
1323
[XmlRoot(
ElementName
= Atom10Constants.FeedTag, Namespace = Atom10Constants.Atom10Namespace)]
System\ServiceModel\Syndication\Atom10ItemFormatter.cs (2)
19
[XmlRoot(
ElementName
= Atom10Constants.EntryTag, Namespace = Atom10Constants.Atom10Namespace)]
179
[XmlRoot(
ElementName
= Atom10Constants.EntryTag, Namespace = Atom10Constants.Atom10Namespace)]
System\ServiceModel\Syndication\AtomPub10CategoriesDocumentFormatter.cs (1)
20
[XmlRoot(
ElementName
= App10Constants.Categories, Namespace = App10Constants.Namespace)]
System\ServiceModel\Syndication\AtomPub10ServiceDocumentFormatter.cs (2)
23
[XmlRoot(
ElementName
= App10Constants.Service, Namespace = App10Constants.Namespace)]
793
[XmlRoot(
ElementName
= App10Constants.Service, Namespace = App10Constants.Namespace)]
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
22
[XmlRoot(
ElementName
= Rss20Constants.RssTag, Namespace = Rss20Constants.Rss20Namespace)]
1463
[XmlRoot(
ElementName
= Rss20Constants.RssTag, Namespace = Rss20Constants.Rss20Namespace)]
System\ServiceModel\Syndication\Rss20ItemFormatter.cs (2)
19
[XmlRoot(
ElementName
= Rss20Constants.ItemTag, Namespace = Rss20Constants.Rss20Namespace)]
197
[XmlRoot(
ElementName
= Rss20Constants.ItemTag, Namespace = Rss20Constants.Rss20Namespace)]
System.Web.Extensions (2)
Compilation\WCFModel\DataSvcMapFile.cs (1)
93
[XmlRoot(Namespace = DataSvcMapFileImpl.NamespaceUri,
ElementName
= "ReferenceGroup")]
Compilation\WCFModel\SvcMapFile.cs (1)
93
[XmlRoot(Namespace = SvcMapFileImpl.NamespaceUri,
ElementName
= "ReferenceGroup")]
13 references to ElementName
PresentationFramework (1)
src\Framework\MS\Internal\Annotations\Serializer.cs (1)
78
writer.WriteStartElement(_attribute.
ElementName
, _attribute.Namespace);
System.Data (4)
fx\src\data\System\Data\Common\ObjectStorage.cs (4)
524
key.Value.ElementName = attribute.
ElementName
;
549
(x.Value.
ElementName
== y.Value.
ElementName
) && // all attribute elements are equal
557
return unchecked(obj.Key.GetHashCode() + obj.Value.
ElementName
.GetHashCode());
System.Runtime.Serialization (1)
System\Runtime\Serialization\XmlDataContract.cs (1)
227
string elementName = xmlRootAttribute.
ElementName
;
System.Web.Services (2)
System\Web\Services\Configuration\WebServicesSection.cs (1)
99
string name = ((XmlRootAttribute)xmlElementAttribs[0]).
ElementName
;
System\Web\Services\Protocols\SoapReflector.cs (1)
493
attr.ElementName = a.XmlRoot.
ElementName
;
System.Xml (5)
System\Xml\Serialization\XmlReflectionImporter.cs (4)
249
if (root.
ElementName
.Length > 0)
250
element.Name = XmlConvert.EncodeLocalName(root.
ElementName
);
1170
if (structAttrs.XmlRoot.
ElementName
.Length > 0)
1171
xmlElement.ElementName = structAttrs.XmlRoot.
ElementName
;
System\Xml\Serialization\XmlRootAttribute.cs (1)
84
get { return (ns == null ? String.Empty : ns) + ":" +
ElementName
+ ":" + nullable.ToString(); }