Fixed dialogue "Web Site Properties" and small correction of procedure "get/set status of the pool"

This commit is contained in:
dev_amdtel 2013-05-07 12:22:46 +04:00
parent cfd0b39673
commit fac0d8c9d9
7 changed files with 106 additions and 77 deletions

View file

@ -6,8 +6,10 @@ namespace WebsitePanel.Providers
public enum AppPoolState
{
Unknown = 0,
Start = 1,
Stop = 2,
Recycle = 3
Starting = 1,
Started = 2,
Stopping = 3,
Stopped = 4,
Recycle = 5
}
}