Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ConstantMapping.cs
Go to the documentation of this file.
1
using
System.Diagnostics.CodeAnalysis
;
2
3
namespace
System.Xml.Serialization
;
4
5
internal
sealed
class
ConstantMapping
:
Mapping
6
{
7
private
string
_xmlName
;
8
9
private
string
_name
;
10
11
private
long
_value
;
12
13
internal
string
XmlName
14
{
15
get
16
{
17
if
(
_xmlName
!=
null
)
18
{
19
return
_xmlName
;
20
}
21
return
string
.Empty;
22
}
23
[
param
:
AllowNull
]
24
set
25
{
26
_xmlName
=
value
;
27
}
28
}
29
30
internal
string
Name
31
{
32
get
33
{
34
if
(
_name
!=
null
)
35
{
36
return
_name
;
37
}
38
return
string
.Empty;
39
}
40
[
param
:
AllowNull
]
41
set
42
{
43
_name
=
value
;
44
}
45
}
46
47
internal
long
Value
48
{
49
get
50
{
51
return
_value
;
52
}
53
set
54
{
55
_value
=
value
;
56
}
57
}
58
}
System.Xml.Serialization.ConstantMapping._name
string _name
Definition
ConstantMapping.cs:9
System.Xml.Serialization.ConstantMapping._xmlName
string _xmlName
Definition
ConstantMapping.cs:7
System.Xml.Serialization.ConstantMapping.Name
string Name
Definition
ConstantMapping.cs:31
System.Xml.Serialization.ConstantMapping._value
long _value
Definition
ConstantMapping.cs:11
System.Xml.Serialization.ConstantMapping.Value
long Value
Definition
ConstantMapping.cs:48
System.Xml.Serialization.ConstantMapping
Definition
ConstantMapping.cs:6
System.Xml.Serialization.Mapping
Definition
Mapping.cs:4
System.Xml.XmlName
Definition
XmlName.cs:6
System.Diagnostics.CodeAnalysis
Definition
AllowNullAttribute.cs:1
System.Xml.Serialization
Definition
DateTimeSerializationSection.cs:1
System.Xml.ValueHandleType.Dictionary
@ Dictionary
System.ExceptionArgument.value
@ value
source
System.Private.Xml
System.Xml.Serialization
ConstantMapping.cs
Generated by
1.10.0