HttpRuntimeSection.Enable Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that indicates whether the application domain is enabled.
public:
property bool Enable { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("enable", DefaultValue=true)]
public bool Enable { get; set; }
[<System.Configuration.ConfigurationProperty("enable", DefaultValue=true)>]
member this.Enable : bool with get, set
Public Property Enable As Boolean
Property Value
true
if the application domain is enabled; otherwise, false
. The default value is true
.
- Attributes
Examples
The following example shows how to use the Enable property.
// Get the Enable property value.
Response.Write("Enable: " +
configSection.Enable + "<br>");
// Set the Enable property value to true.
configSection.Enable = true;
' Get the Enable property value.
Response.Write("Enable: " & _
configSection.Enable & "<br>")
' Set the Enable property value to true.
configSection.Enable = True
Remarks
This setting affects the application domain or domains at the current node level and below.