WebSiteGetConfigurationResponse.DefaultDocuments Property
Gets or sets a collection that contains, in order of preference, the names of the files that a web site returns when the web site's domain name is requested by itself.
Namespace: Microsoft.WindowsAzure.Management.WebSites.Models
Assembly: Microsoft.WindowsAzure.Management.WebSites (in Microsoft.WindowsAzure.Management.WebSites.dll)
Syntax
public IList<string> DefaultDocuments { get; set; }
public:
property IList<String^>^ DefaultDocuments {
IList<String^>^ get();
void set(IList<String^>^ value);
}
member DefaultDocuments : IList<string> with get, set
Public Property DefaultDocuments As IList(Of String)
Property Value
Type: System.Collections.Generic.IList<String>
A collection of file names.
Remarks
For example, if the default document for https://contoso.com is default.htm, the page https://www.contoso.com/default.htm is returned when the browser is pointed to https://www.contoso.com.
See Also
WebSiteGetConfigurationResponse Class
Microsoft.WindowsAzure.Management.WebSites.Models Namespace
Return to top