Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlTypeAttribute.cs
Go to the documentation of this file.
2
4
7{
8 private bool _includeInSchema = true;
9
10 private bool _anonymousType;
11
12 private string _ns;
13
14 private string _typeName;
15
16 public bool AnonymousType
17 {
18 get
19 {
20 return _anonymousType;
21 }
22 set
23 {
25 }
26 }
27
28 public bool IncludeInSchema
29 {
30 get
31 {
32 return _includeInSchema;
33 }
34 set
35 {
37 }
38 }
39
40 public string TypeName
41 {
42 get
43 {
44 if (_typeName != null)
45 {
46 return _typeName;
47 }
48 return string.Empty;
49 }
51 set
52 {
54 }
55 }
56
57 public string? Namespace
58 {
59 get
60 {
61 return _ns;
62 }
63 set
64 {
65 _ns = value;
66 }
67 }
68
70 {
71 }
72
73 public XmlTypeAttribute(string? typeName)
74 {
75 _typeName = typeName;
76 }
77}