WebSiteGetConfigurationResponse.AppSettings Property
Gets or sets a collection of name and value pairs that contain application settings for a web site.
Namespace: Microsoft.WindowsAzure.Management.WebSites.Models
Assembly: Microsoft.WindowsAzure.Management.WebSites (in Microsoft.WindowsAzure.Management.WebSites.dll)
Syntax
public IDictionary<string, string> AppSettings { get; set; }
public:
property IDictionary<String^, String^>^ AppSettings {
IDictionary<String^, String^>^ get();
void set(IDictionary<String^, String^>^ value);
}
member AppSettings : IDictionary<string, string> with get, set
Public Property AppSettings As IDictionary(Of String, String)
Property Value
Type: System.Collections.Generic.IDictionary<String, String>
A collection of name and value pairs.
See Also
WebSiteGetConfigurationResponse Class
Microsoft.WindowsAzure.Management.WebSites.Models Namespace
Return to top