WebSite.Enabled Property

 

Gets or sets a whether the web site is enabled.

Namespace:   Microsoft.WindowsAzure.Management.WebSites.Models
Assembly:  Microsoft.WindowsAzure.Management.WebSites (in Microsoft.WindowsAzure.Management.WebSites.dll)

Syntax

public Nullable<bool> Enabled { get; set; }
public:
property Nullable<bool> Enabled {
    Nullable<bool> get();
    void set(Nullable<bool> value);
}
member Enabled : Nullable<bool> with get, set
Public Property Enabled As Nullable(Of Boolean)

Property Value

Type: System.Nullable<Boolean>

true if the site is enabled; otherwise, false.

Remarks

Setting this value to false disables the web site.

See Also

WebSite Class
Microsoft.WindowsAzure.Management.WebSites.Models Namespace

Return to top