Getting the .NET framework setting for <compilation debug="true"> - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T02:58:44Z http://stackoverflow.com/feeds/question/450017 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/450017/getting-the-net-framework-setting-for-compilation-debugtrue 0 Getting the .NET framework setting for <compilation debug="true"> Ian Quigley 2009-01-16T10:29:40Z 2009-01-16T10:57:18Z <p>In my web.config I have the standard element;</p> <pre><code>&lt;compilation debug="true" defaultLanguage="c#"&gt; </code></pre> <p>I know I could use [Conditional("DEBUG")] on methods, or use some pre-compiler if statement like #if DEBUG, but what I am looking for is the built-in .NET framework setting that lets me know if the setting for debug in the compilation section.</p> <p>I've seen it done before but can't find it or remember it.</p> <p><strong>Duplicate - <a href="http://stackoverflow.com/questions/401306/programmatically-access-the-compilation-section-of-a-web-config#401413">Programmatically access the <code>&lt;compilation /&gt;</code> section of a web.config?</a></strong> </p> http://stackoverflow.com/questions/450017/getting-the-net-framework-setting-for-compilation-debugtrue/450072#450072 1 Answer by Ian Quigley for Getting the .NET framework setting for <compilation debug="true"> Ian Quigley 2009-01-16T10:57:18Z 2009-01-16T10:57:18Z <p>HttpContext.Current.IsDebuggingEnabled (posted by Jason Diamond) was what I was looking for.</p> <p>Thanks for your help Marc!</p>