wsp-10212 fixed: option set deatiled error mode on web site
This commit is contained in:
parent
0a16e252c9
commit
aa4db51dd5
7 changed files with 133 additions and 34 deletions
|
@ -61,6 +61,8 @@ namespace WebsitePanel.Providers.Web
|
|||
private string defaultDocs;
|
||||
private string httpRedirect;
|
||||
private HttpError[] httpErrors;
|
||||
private HttpErrorsMode errorMode;
|
||||
private HttpErrorsExistingResponse existingResponse;
|
||||
private MimeMap[] mimeMaps;
|
||||
private HttpHeader[] httpHeaders;
|
||||
private bool aspInstalled;
|
||||
|
@ -122,6 +124,18 @@ namespace WebsitePanel.Providers.Web
|
|||
set { httpErrors = value; }
|
||||
}
|
||||
|
||||
public HttpErrorsMode ErrorMode
|
||||
{
|
||||
get { return errorMode; }
|
||||
set { errorMode = value; }
|
||||
}
|
||||
|
||||
public HttpErrorsExistingResponse ExistingResponse
|
||||
{
|
||||
get { return existingResponse; }
|
||||
set { existingResponse = value; }
|
||||
}
|
||||
|
||||
public string ApplicationPool
|
||||
{
|
||||
get { return this.applicationPool; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue