28 writes to Type
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 (8)
Model.cs (8)
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))]
6 references to Type
System.Private.Xml (6)
System\Xml\Serialization\XmlReflectionImporter.cs (6)
1643
Type targetType = xmlElement.
Type
?? arrayElementType;
1817
if (xmlElement!.
Type
!= null)
1819
if (_typeScope.GetTypeDesc(xmlElement.
Type
) != accessor.TypeDesc)
1885
Type targetType = xmlElement.
Type
?? accessorType;
2085
Type type = elements[i]!.
Type
== null ? accessorType : elements[i]!.
Type
!;