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