13 references to DebuggableAttribute
mscorlib (2)
system\reflection\emit\assemblybuilder.cs (1)
1680
typeof(System.Diagnostics.
DebuggableAttribute
) == con.DeclaringType);
system\reflection\emit\customattributebuilder.cs (1)
555
typeof(System.Diagnostics.
DebuggableAttribute
) == m_con.DeclaringType);
System.Activities (4)
System\Activities\Debugger\StateManager.cs (4)
705
Type debuggableAttributeType = typeof(
DebuggableAttribute
);
706
ConstructorInfo constructorInfo = debuggableAttributeType.GetConstructor(new Type[] { typeof(
DebuggableAttribute
.DebuggingModes) });
708
DebuggableAttribute
.DebuggingModes.DisableOptimizations |
709
DebuggableAttribute
.DebuggingModes.Default
System.Data.SqlXml (3)
System\Xml\Xsl\IlGen\GenerateHelper.cs (2)
134
public static readonly ConstructorInfo Debuggable = GetConstructor(typeof(
DebuggableAttribute
), typeof(
DebuggableAttribute
.DebuggingModes));
System\Xml\Xsl\IlGen\XmlILModule.cs (1)
20
using DebuggingModes =
DebuggableAttribute
.DebuggingModes;
System.Windows.Forms (4)
winforms\Managed\System\WinForms\NativeWindow.cs (4)
551
if (Attribute.IsDefined(entry, typeof(
DebuggableAttribute
))) {
553
Attribute[] attr = Attribute.GetCustomAttributes(entry, typeof(
DebuggableAttribute
));
555
DebuggableAttribute
dbg = (
DebuggableAttribute
)attr[0];