12 writes to Type
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))]
6 references to Type
System.Private.Xml (6)
System\Xml\Serialization\XmlReflectionImporter.cs (6)
1648Type targetType = xmlElement.Type ?? arrayElementType; 1822if (xmlElement!.Type != null) 1824if (_typeScope.GetTypeDesc(xmlElement.Type) != accessor.TypeDesc) 1890Type targetType = xmlElement.Type ?? accessorType; 2090Type type = elements[i]!.Type == null ? accessorType : elements[i]!.Type!;