16 writes to ElementName
CSharpSyntaxGenerator (12)
Model\Field.cs (5)
21[XmlElement(ElementName = "Field", Type = typeof(Field))] 22[XmlElement(ElementName = "Sequence", Type = typeof(Sequence))] 33[XmlElement(ElementName = "Field", Type = typeof(Field))] 34[XmlElement(ElementName = "Choice", Type = typeof(Choice))] 68[XmlElement(ElementName = "Kind", Type = typeof(Kind))]
Model\Node.cs (1)
20[XmlElement(ElementName = "Kind", Type = typeof(Kind))]
Model\Tree.cs (3)
18[XmlElement(ElementName = "Node", Type = typeof(Node))] 19[XmlElement(ElementName = "AbstractNode", Type = typeof(AbstractNode))] 20[XmlElement(ElementName = "PredefinedNode", Type = typeof(PredefinedNode))]
Model\TreeType.cs (3)
35[XmlElement(ElementName = "Field", Type = typeof(Field))] 36[XmlElement(ElementName = "Choice", Type = typeof(Choice))] 37[XmlElement(ElementName = "Sequence", Type = typeof(Sequence))]
System.Private.Xml (2)
System\Xml\Serialization\XmlReflectionImporter.cs (2)
1358xmlElement.ElementName = structAttrs.XmlRoot.ElementName; 1373xmlElement.ElementName = xmlReflectionMember.MemberName;
System.ServiceModel.Primitives (2)
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (2)
1203elementAttribute.ElementName = elementName.DecodedName; 1214elementAttribute.ElementName = elementName.DecodedName;
12 references to ElementName
System.Private.Xml (11)
System\Xml\Serialization\XmlReflectionImporter.cs (11)
1372if (xmlElement.ElementName.Length == 0) 1656element.Name = XmlConvert.EncodeLocalName(xmlElement.ElementName.Length == 0 ? accessorName : xmlElement.ElementName); 1661element.Name = xmlElement.ElementName.Length == 0 ? element.Mapping.DefaultElementName : XmlConvert.EncodeLocalName(xmlElement.ElementName); 1828element.Name = XmlConvert.EncodeLocalName(xmlElement.ElementName.Length == 0 ? accessorName : xmlElement.ElementName); 1898element.Name = XmlConvert.EncodeLocalName(xmlElement.ElementName.Length == 0 ? accessorName : xmlElement.ElementName); 1902element.Name = xmlElement.ElementName.Length == 0 ? element.Mapping.DefaultElementName : XmlConvert.EncodeLocalName(xmlElement.ElementName);
System.ServiceModel.Primitives (1)
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (1)
1212if (elementAttribute.ElementName == String.Empty)