IIS7. Enable/Disable Compression

This commit is contained in:
Sergey 2013-03-06 12:53:22 +02:00
parent c205e3d6e4
commit 181998b145
8 changed files with 144 additions and 10 deletions

View file

@ -56,6 +56,8 @@ namespace WebsitePanel.Providers.Web
private bool enableAnonymousAccess;
private bool enableWindowsAuthentication;
private bool enableBasicAuthentication;
private bool enableDynamicCompression;
private bool enableStaticCompression;
private string defaultDocs;
private string httpRedirect;
private HttpError[] httpErrors;
@ -167,6 +169,17 @@ namespace WebsitePanel.Providers.Web
set { this.enableBasicAuthentication = value; }
}
public bool EnableDynamicCompression
{
get { return this.enableDynamicCompression; }
set { this.enableDynamicCompression = value; }
}
public bool EnableStaticCompression
{
get { return this.enableStaticCompression; }
set { this.enableStaticCompression = value; }
}
public bool AspInstalled
{
get { return this.aspInstalled; }