CompilationSection.Debug Property
.NET Framework (current version)
Gets or sets a value specifying whether to compile release binaries or debug binaries.
Assembly: System.Web (in System.Web.dll)
[ConfigurationPropertyAttribute("debug", DefaultValue = false)] public bool Debug { get; set; }
Property Value
Type: System.Booleantrue if debug binaries will be used for compilation; otherwise, false. false specifies that release binaries will be used for compilation. The default is false.
The following code example demonstrates how to use the Debug property. This code example is part of a larger example provided for the CompilationSection class.
.NET Framework
Available since 2.0
Available since 2.0
Show: