websitepanel/WebsitePanel/Sources/WebsitePanel.Providers.Base/Common/AppPoolState.cs

15 lines
257 B
C#

using System;
namespace WebsitePanel.Providers
{
[Serializable]
public enum AppPoolState
{
Unknown = 0,
Starting = 1,
Started = 2,
Stopping = 3,
Stopped = 4,
Recycle = 5
}
}