HttpRuntimeSection.Enable Свойство

Определение

Возвращает или задает значение, указывающее, включен ли домен приложения.

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

Значение свойства

Boolean

true, если домен приложения включен, в противном случае — false. Значение по умолчанию — true.

Атрибуты

Примеры

В следующем примере показано, как использовать свойство Enable.

// 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

Комментарии

Этот параметр влияет на домен приложения или домены на текущем уровне узла и ниже.

Применяется к

См. также раздел