Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ForState.cs
Go to the documentation of this file.
1
using
System.Reflection.Emit
;
2
3
namespace
System.Runtime.Serialization
;
4
5
internal
sealed
class
ForState
6
{
7
private
readonly
LocalBuilder
_indexVar
;
8
9
private
readonly
Label
_beginLabel
;
10
11
private
readonly
Label
_testLabel
;
12
13
private
Label
_endLabel
;
14
15
private
bool
_requiresEndLabel
;
16
17
private
readonly
object
_end
;
18
19
internal
LocalBuilder
Index
=>
_indexVar
;
20
21
internal
Label
BeginLabel
=>
_beginLabel
;
22
23
internal
Label
TestLabel
=>
_testLabel
;
24
25
internal
Label
EndLabel
26
{
27
get
28
{
29
return
_endLabel
;
30
}
31
set
32
{
33
_endLabel
=
value
;
34
}
35
}
36
37
internal
bool
RequiresEndLabel
38
{
39
get
40
{
41
return
_requiresEndLabel
;
42
}
43
set
44
{
45
_requiresEndLabel
=
value
;
46
}
47
}
48
49
internal
object
End
=>
_end
;
50
51
internal
ForState
(
LocalBuilder
indexVar
,
Label
beginLabel
,
Label
testLabel
,
object
end)
52
{
53
_indexVar
=
indexVar
;
54
_beginLabel
=
beginLabel
;
55
_testLabel
=
testLabel
;
56
_end
= end;
57
}
58
}
System.Reflection.Emit.LocalBuilder
Definition
LocalBuilder.cs:4
System.Runtime.Serialization.ForState.End
object End
Definition
ForState.cs:49
System.Runtime.Serialization.ForState.RequiresEndLabel
bool RequiresEndLabel
Definition
ForState.cs:38
System.Runtime.Serialization.ForState._indexVar
readonly LocalBuilder _indexVar
Definition
ForState.cs:7
System.Runtime.Serialization.ForState.TestLabel
Label TestLabel
Definition
ForState.cs:23
System.Runtime.Serialization.ForState._end
readonly object _end
Definition
ForState.cs:17
System.Runtime.Serialization.ForState.EndLabel
Label EndLabel
Definition
ForState.cs:26
System.Runtime.Serialization.ForState._beginLabel
readonly Label _beginLabel
Definition
ForState.cs:9
System.Runtime.Serialization.ForState.BeginLabel
Label BeginLabel
Definition
ForState.cs:21
System.Runtime.Serialization.ForState.ForState
ForState(LocalBuilder indexVar, Label beginLabel, Label testLabel, object end)
Definition
ForState.cs:51
System.Runtime.Serialization.ForState._requiresEndLabel
bool _requiresEndLabel
Definition
ForState.cs:15
System.Runtime.Serialization.ForState._testLabel
readonly Label _testLabel
Definition
ForState.cs:11
System.Runtime.Serialization.ForState._endLabel
Label _endLabel
Definition
ForState.cs:13
System.Runtime.Serialization.ForState
Definition
ForState.cs:6
System.Reflection.Emit
Definition
__ExceptionInfo.cs:1
System.Runtime.Serialization.CollectionKind.Dictionary
@ Dictionary
System.Runtime.Serialization
Definition
SerializationGuard.cs:3
System.ExceptionArgument.value
@ value
System.Index
Definition
Index.cs:7
System.Reflection.Emit.Label
Definition
Label.cs:6
source
System.Private.DataContractSerialization
System.Runtime.Serialization
ForState.cs
Generated by
1.10.0