Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DebuggerBrowsableAttribute.cs
Go to the documentation of this file.
1
namespace
System.Diagnostics
;
2
3
[AttributeUsage(
AttributeTargets
.Property |
AttributeTargets
.Field, AllowMultiple =
false
)]
4
public
sealed
class
DebuggerBrowsableAttribute
:
Attribute
5
{
6
public
DebuggerBrowsableState
State {
get
; }
7
8
public
DebuggerBrowsableAttribute
(
DebuggerBrowsableState
state
)
9
{
10
if
(state < DebuggerBrowsableState.Never || state >
DebuggerBrowsableState
.RootHidden)
11
{
12
throw
new
ArgumentOutOfRangeException
(
"state"
);
13
}
14
State =
state
;
15
}
16
}
System.ArgumentOutOfRangeException
Definition
ArgumentOutOfRangeException.cs:9
System.Attribute
Definition
Attribute.cs:12
System.Diagnostics.DebuggerBrowsableAttribute.DebuggerBrowsableAttribute
DebuggerBrowsableAttribute(DebuggerBrowsableState state)
Definition
DebuggerBrowsableAttribute.cs:8
System.Diagnostics.DebuggerBrowsableAttribute
Definition
DebuggerBrowsableAttribute.cs:5
System.Diagnostics.DebuggerBrowsableState
DebuggerBrowsableState
Definition
DebuggerBrowsableState.cs:4
System.Diagnostics
Definition
AggregationManager.cs:6
System.ExceptionArgument.state
@ state
System.AttributeTargets
AttributeTargets
Definition
AttributeTargets.cs:5
source
System.Private.CoreLib
System.Diagnostics
DebuggerBrowsableAttribute.cs
Generated by
1.10.0