56 lines
2.5 KiB
Plaintext
56 lines
2.5 KiB
Plaintext
// ==++==
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// ==--==
|
|
//============================================================
|
|
//
|
|
// Class: DebuggerAttributes
|
|
//
|
|
// Purpose: Attributes for debugger
|
|
//
|
|
//===========================================================
|
|
|
|
namespace System.Diagnostics
|
|
{
|
|
//| <include file='doc\DebuggerAttributes.uex' path='docs/doc[@for="DebuggerStepThroughAttribute"]/*' />
|
|
[AttributeUsage(AttributeTargets.Class |
|
|
AttributeTargets.Struct |
|
|
AttributeTargets.Method |
|
|
AttributeTargets.Constructor, Inherited = false)]
|
|
public sealed class DebuggerStepThroughAttribute : Attribute
|
|
{
|
|
//| <include file='doc\DebuggerAttributes.uex' path='docs/doc[@for="DebuggerStepThroughAttribute.DebuggerStepThroughAttribute"]/*' />
|
|
public DebuggerStepThroughAttribute();
|
|
}
|
|
|
|
//| <include file='doc\DebuggerAttributes.uex' path='docs/doc[@for="DebuggerHiddenAttribute"]/*' />
|
|
[AttributeUsage(AttributeTargets.Method |
|
|
AttributeTargets.Property |
|
|
AttributeTargets.Constructor, Inherited = false)]
|
|
public sealed class DebuggerHiddenAttribute : Attribute
|
|
{
|
|
//| <include file='doc\DebuggerAttributes.uex' path='docs/doc[@for="DebuggerHiddenAttribute.DebuggerHiddenAttribute"]/*' />
|
|
public DebuggerHiddenAttribute();
|
|
}
|
|
|
|
// Attribute class used by the compiler to mark modules.
|
|
// If present, then debugging information for everything in the
|
|
// assembly was generated by the compiler, and will be preserved
|
|
// by the Runtime so that the debugger can provide full functionality
|
|
// in the case of JIT attach. If not present, then the compiler may
|
|
// or may not have included debugging information, and the Runtime
|
|
// won't preserve the debugging info, which will make debugging after
|
|
// a JIT attach difficult.
|
|
//| <include file='doc\DebuggerAttributes.uex' path='docs/doc[@for="DebuggableAttribute"]/*' />
|
|
[AttributeUsage(AttributeTargets.Assembly|
|
|
AttributeTargets.Module, AllowMultiple = false)]
|
|
public sealed class DebuggableAttribute : Attribute
|
|
{
|
|
//| <include file='doc\DebuggerAttributes.uex' path='docs/doc[@for="DebuggableAttribute.DebuggableAttribute"]/*' />
|
|
public DebuggableAttribute(bool isJITTrackingEnabled,
|
|
bool isJITOptimizerDisabled);
|
|
}
|
|
}
|
|
|