Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DebuggableAttribute::IsJITTrackingEnabled Property

 

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

Namespace:   System.Diagnostics
Assembly:  mscorlib (in mscorlib.dll)

public:
property bool IsJITTrackingEnabled {
	bool get();
}

Property Value

Type: System::Boolean

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

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.

System_CAPS_noteNote

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.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft