31 writes to ElementName
BoundTreeGenerator (8)
Model.cs (8)
18
[XmlElement(
ElementName
= "Node", Type = typeof(Node))]
19
[XmlElement(
ElementName
= "AbstractNode", Type = typeof(AbstractNode))]
20
[XmlElement(
ElementName
= "PredefinedNode", Type = typeof(PredefinedNode))]
21
[XmlElement(
ElementName
= "Enum", Type = typeof(EnumType))]
22
[XmlElement(
ElementName
= "ValueType", Type = typeof(ValueType))]
44
[XmlElement(
ElementName
= "Field", Type = typeof(Field))]
63
[XmlElement(
ElementName
= "Kind", Type = typeof(Kind))]
105
[XmlElement(
ElementName
= "Field", Type = typeof(EnumField))]
CSharpSyntaxGenerator (12)
Model\Field.cs (5)
20
[XmlElement(
ElementName
= "Field", Type = typeof(Field))]
21
[XmlElement(
ElementName
= "Sequence", Type = typeof(Sequence))]
32
[XmlElement(
ElementName
= "Field", Type = typeof(Field))]
33
[XmlElement(
ElementName
= "Choice", Type = typeof(Choice))]
60
[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)
29
[XmlElement(
ElementName
= "Field", Type = typeof(Field))]
30
[XmlElement(
ElementName
= "Choice", Type = typeof(Choice))]
31
[XmlElement(
ElementName
= "Sequence", Type = typeof(Sequence))]
IOperationGenerator (9)
Model.cs (9)
20
[XmlElement(
ElementName
= "UnusedOperationKinds")]
23
[XmlElement(
ElementName
= "Node", Type = typeof(Node))]
24
[XmlElement(
ElementName
= "AbstractNode", Type = typeof(AbstractNode))]
45
[XmlElement(
ElementName
= "Comments", Type = typeof(Comments))]
51
[XmlElement(
ElementName
= "Property", Type = typeof(Property))]
54
[XmlElement(
ElementName
= "Obsolete", Type = typeof(ObsoleteTag))]
57
[XmlElement(
ElementName
= "OperationKind", Type = typeof(OperationKind))]
132
[XmlElement(
ElementName
= "Comments", Type = typeof(Comments))]
145
[XmlElement(
ElementName
= "Entry", Type = typeof(OperationKindEntry))]
System.Private.Xml (2)
System\Xml\Serialization\XmlReflectionImporter.cs (2)
1353
xmlElement.
ElementName
= structAttrs.XmlRoot.ElementName;
1368
xmlElement.
ElementName
= xmlReflectionMember.MemberName;
11 references to ElementName
System.Private.Xml (11)
System\Xml\Serialization\XmlReflectionImporter.cs (11)
1367
if (xmlElement.
ElementName
.Length == 0)
1651
element.Name = XmlConvert.EncodeLocalName(xmlElement.
ElementName
.Length == 0 ? accessorName : xmlElement.
ElementName
);
1656
element.Name = xmlElement.
ElementName
.Length == 0 ? element.Mapping.DefaultElementName : XmlConvert.EncodeLocalName(xmlElement.
ElementName
);
1823
element.Name = XmlConvert.EncodeLocalName(xmlElement.
ElementName
.Length == 0 ? accessorName : xmlElement.
ElementName
);
1893
element.Name = XmlConvert.EncodeLocalName(xmlElement.
ElementName
.Length == 0 ? accessorName : xmlElement.
ElementName
);
1897
element.Name = xmlElement.
ElementName
.Length == 0 ? element.Mapping.DefaultElementName : XmlConvert.EncodeLocalName(xmlElement.
ElementName
);