DebuggableAttribute.IsJITTrackingEnabled Property

Definition

Gets a value that indicates whether the runtime will track information during code generation for the debugger.

public:
 property bool IsJITTrackingEnabled { bool get(); };
public bool IsJITTrackingEnabled { get; }
member this.IsJITTrackingEnabled : bool
Public ReadOnly Property IsJITTrackingEnabled As Boolean

Property Value

true if the runtime will track information during code generation for the debugger; otherwise, false.

Remarks

IsJITTrackingEnabled controls whether the runtime tracks information important to the debugger during code generation. This information helps the debugger provide a rich debugging experience.

Starting with the .NET Framework 2.0, JIT tracking information is always enabled during debugging, and this property value is ignored.

Note

This property does not control the ability to debug, but tells the just-in-time (JIT) compiler to generate tracking information. Specifically, the compiler tracks the Microsoft Intermediate Language (MSIL)-offset to the native-code offset within a method.

Applies to