Share via


WebSite.EnabledHostNames Property

 

Gets or sets an array of enabled hostnames for the web site.

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

Syntax

public IList<string> EnabledHostNames { get; set; }
public:
property IList<String^>^ EnabledHostNames {
    IList<String^>^ get();
    void set(IList<String^>^ value);
}
member EnabledHostNames : IList<string> with get, set
Public Property EnabledHostNames As IList(Of String)

Property Value

Type: System.Collections.Generic.IList<String>

An array of enabled hostnames.

Remarks

By default, the hostnames are [SiteName].azurewebsites.net and [SiteName].scm.azurewebsites.net.

See Also

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

Return to top