Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Initializes a new instance of the DebuggableAttribute class, using the specified tracking and optimization options for the just-in-time (JIT) compiler.
Namespace: System.Diagnostics
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Sub New ( _
isJITTrackingEnabled As Boolean, _
isJITOptimizerDisabled As Boolean _
)
public DebuggableAttribute(
bool isJITTrackingEnabled,
bool isJITOptimizerDisabled
)
public:
DebuggableAttribute(
bool isJITTrackingEnabled,
bool isJITOptimizerDisabled
)
new :
isJITTrackingEnabled:bool *
isJITOptimizerDisabled:bool -> DebuggableAttribute
public function DebuggableAttribute(
isJITTrackingEnabled : boolean,
isJITOptimizerDisabled : boolean
)
Parameters
- isJITTrackingEnabled
Type: System. . :: . .Boolean
true to enable debugging; otherwise, false.
- isJITOptimizerDisabled
Type: System. . :: . .Boolean
true to disable the optimizer for execution; otherwise, false.
Remarks
This constructor sets the properties IsJITTrackingEnabled and IsJITOptimizerDisabled.
An isJITOptimizerDisabled parameter value of true optimizes for debugging; a value of false optimizes for execution.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.