12 lines
187 B
C#
12 lines
187 B
C#
namespace LANCommander.SDK.Enums
|
|
{
|
|
public enum ProcessTerminationMethod
|
|
{
|
|
Close,
|
|
Kill,
|
|
SIGHUP,
|
|
SIGINT,
|
|
SIGKILL,
|
|
SIGTERM
|
|
}
|
|
}
|