Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlReflectionMember.cs
Go to the documentation of this file.
1
namespace
System.Xml.Serialization
;
2
3
public
class
XmlReflectionMember
4
{
5
private
string
_memberName
;
6
7
private
Type
_type
;
8
9
private
XmlAttributes
_xmlAttributes
=
new
XmlAttributes
();
10
11
private
SoapAttributes
_soapAttributes
=
new
SoapAttributes
();
12
13
private
bool
_isReturnValue
;
14
15
private
bool
_overrideIsNullable
;
16
17
public
Type
?
MemberType
18
{
19
get
20
{
21
return
_type
;
22
}
23
set
24
{
25
_type
=
value
;
26
}
27
}
28
29
public
XmlAttributes
XmlAttributes
30
{
31
get
32
{
33
return
_xmlAttributes
;
34
}
35
set
36
{
37
_xmlAttributes
=
value
;
38
}
39
}
40
41
public
SoapAttributes
SoapAttributes
42
{
43
get
44
{
45
return
_soapAttributes
;
46
}
47
set
48
{
49
_soapAttributes
=
value
;
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
{
65
_memberName
=
value
;
66
}
67
}
68
69
public
bool
IsReturnValue
70
{
71
get
72
{
73
return
_isReturnValue
;
74
}
75
set
76
{
77
_isReturnValue
=
value
;
78
}
79
}
80
81
public
bool
OverrideIsNullable
82
{
83
get
84
{
85
return
_overrideIsNullable
;
86
}
87
set
88
{
89
_overrideIsNullable
=
value
;
90
}
91
}
92
}
System.Type
Definition
Type.cs:14
System.Xml.Serialization.SoapAttributes
Definition
SoapAttributes.cs:7
System.Xml.Serialization.XmlAttributes
Definition
XmlAttributes.cs:7
System.Xml.Serialization.XmlReflectionMember._type
Type _type
Definition
XmlReflectionMember.cs:7
System.Xml.Serialization.XmlReflectionMember.MemberType
Type? MemberType
Definition
XmlReflectionMember.cs:18
System.Xml.Serialization.XmlReflectionMember._soapAttributes
SoapAttributes _soapAttributes
Definition
XmlReflectionMember.cs:11
System.Xml.Serialization.XmlReflectionMember.MemberName
string MemberName
Definition
XmlReflectionMember.cs:54
System.Xml.Serialization.XmlReflectionMember.OverrideIsNullable
bool OverrideIsNullable
Definition
XmlReflectionMember.cs:82
System.Xml.Serialization.XmlReflectionMember._memberName
string _memberName
Definition
XmlReflectionMember.cs:5
System.Xml.Serialization.XmlReflectionMember.IsReturnValue
bool IsReturnValue
Definition
XmlReflectionMember.cs:70
System.Xml.Serialization.XmlReflectionMember._overrideIsNullable
bool _overrideIsNullable
Definition
XmlReflectionMember.cs:15
System.Xml.Serialization.XmlReflectionMember._xmlAttributes
XmlAttributes _xmlAttributes
Definition
XmlReflectionMember.cs:9
System.Xml.Serialization.XmlReflectionMember.XmlAttributes
XmlAttributes XmlAttributes
Definition
XmlReflectionMember.cs:30
System.Xml.Serialization.XmlReflectionMember._isReturnValue
bool _isReturnValue
Definition
XmlReflectionMember.cs:13
System.Xml.Serialization.XmlReflectionMember.SoapAttributes
SoapAttributes SoapAttributes
Definition
XmlReflectionMember.cs:42
System.Xml.Serialization.XmlReflectionMember
Definition
XmlReflectionMember.cs:4
System.Xml.Serialization
Definition
DateTimeSerializationSection.cs:1
System.ExceptionArgument.value
@ value
source
System.Private.Xml
System.Xml.Serialization
XmlReflectionMember.cs
Generated by
1.10.0