Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
EventSourceOptions.cs
Go to the documentation of this file.
1
namespace
System.Diagnostics.Tracing
;
2
3
public
struct
EventSourceOptions
4
{
5
internal
EventKeywords
keywords
;
6
7
internal
EventTags
tags
;
8
9
internal
EventActivityOptions
activityOptions
;
10
11
internal
byte
level
;
12
13
internal
byte
opcode
;
14
15
internal
byte
valuesSet
;
16
17
public
EventLevel
Level
18
{
19
get
20
{
21
return
(
EventLevel
)
level
;
22
}
23
set
24
{
25
level
= checked((
byte
)
value
);
26
valuesSet
|= 4;
27
}
28
}
29
30
public
EventOpcode
Opcode
31
{
32
get
33
{
34
return
(
EventOpcode
)
opcode
;
35
}
36
set
37
{
38
opcode
= checked((
byte
)
value
);
39
valuesSet
|= 8;
40
}
41
}
42
43
internal
bool
IsOpcodeSet
=> (
valuesSet
& 8) != 0;
44
45
public
EventKeywords
Keywords
46
{
47
get
48
{
49
return
keywords
;
50
}
51
set
52
{
53
keywords
=
value
;
54
valuesSet
|= 1;
55
}
56
}
57
58
public
EventTags
Tags
59
{
60
get
61
{
62
return
tags
;
63
}
64
set
65
{
66
tags
=
value
;
67
valuesSet
|= 2;
68
}
69
}
70
71
public
EventActivityOptions
ActivityOptions
72
{
73
get
74
{
75
return
activityOptions
;
76
}
77
set
78
{
79
activityOptions
=
value
;
80
valuesSet
|= 16;
81
}
82
}
83
}
System.Diagnostics.Tracing.EventOpcode
EventOpcode
Definition
EventOpcode.cs:4
System.Diagnostics.Tracing.EventLevel
EventLevel
Definition
EventLevel.cs:4
System.Diagnostics.Tracing.EventKeywords
EventKeywords
Definition
EventKeywords.cs:5
System.Diagnostics.Tracing.EventTags
EventTags
Definition
EventTags.cs:5
System.Diagnostics.Tracing.EventActivityOptions
EventActivityOptions
Definition
EventActivityOptions.cs:5
System.Diagnostics.Tracing
Definition
ActivityTracker.cs:4
System.ExceptionArgument.value
@ value
System.Diagnostics.Tracing.EventSourceOptions.IsOpcodeSet
bool IsOpcodeSet
Definition
EventSourceOptions.cs:43
System.Diagnostics.Tracing.EventSourceOptions.Keywords
EventKeywords Keywords
Definition
EventSourceOptions.cs:46
System.Diagnostics.Tracing.EventSourceOptions.Level
EventLevel Level
Definition
EventSourceOptions.cs:18
System.Diagnostics.Tracing.EventSourceOptions.level
byte level
Definition
EventSourceOptions.cs:11
System.Diagnostics.Tracing.EventSourceOptions.keywords
EventKeywords keywords
Definition
EventSourceOptions.cs:5
System.Diagnostics.Tracing.EventSourceOptions.opcode
byte opcode
Definition
EventSourceOptions.cs:13
System.Diagnostics.Tracing.EventSourceOptions.activityOptions
EventActivityOptions activityOptions
Definition
EventSourceOptions.cs:9
System.Diagnostics.Tracing.EventSourceOptions.Tags
EventTags Tags
Definition
EventSourceOptions.cs:59
System.Diagnostics.Tracing.EventSourceOptions.valuesSet
byte valuesSet
Definition
EventSourceOptions.cs:15
System.Diagnostics.Tracing.EventSourceOptions.ActivityOptions
EventActivityOptions ActivityOptions
Definition
EventSourceOptions.cs:72
System.Diagnostics.Tracing.EventSourceOptions.Opcode
EventOpcode Opcode
Definition
EventSourceOptions.cs:31
System.Diagnostics.Tracing.EventSourceOptions.tags
EventTags tags
Definition
EventSourceOptions.cs:7
System.Diagnostics.Tracing.EventSourceOptions
Definition
EventSourceOptions.cs:4
source
System.Private.CoreLib
System.Diagnostics.Tracing
EventSourceOptions.cs
Generated by
1.10.0