Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlReflectionMember.cs
Go to the documentation of this file.
2
4{
5 private string _memberName;
6
7 private Type _type;
8
10
12
13 private bool _isReturnValue;
14
15 private bool _overrideIsNullable;
16
18 {
19 get
20 {
21 return _type;
22 }
23 set
24 {
25 _type = value;
26 }
27 }
28
30 {
31 get
32 {
33 return _xmlAttributes;
34 }
35 set
36 {
38 }
39 }
40
42 {
43 get
44 {
45 return _soapAttributes;
46 }
47 set
48 {
50 }
51 }
52
53 public string MemberName
54 {
55 get
56 {
57 if (_memberName != null)
58 {
59 return _memberName;
60 }
61 return string.Empty;
62 }
63 set
64 {
66 }
67 }
68
69 public bool IsReturnValue
70 {
71 get
72 {
73 return _isReturnValue;
74 }
75 set
76 {
78 }
79 }
80
82 {
83 get
84 {
86 }
87 set
88 {
90 }
91 }
92}