LANCommander/LANCommander.SDK/Enums/ProcessTerminationMethod.cs

13 lines
187 B
C#
Raw Permalink Normal View History

2024-07-04 16:34:30 -05:00
namespace LANCommander.SDK.Enums
{
public enum ProcessTerminationMethod
{
Close,
Kill,
SIGHUP,
SIGINT,
SIGKILL,
SIGTERM
}
}