Add option to send a SIGINT to the process being wrapped

This commit is contained in:
Ed Frey
2014-01-02 14:00:34 -05:00
parent ab4a373038
commit 1ed045b817
4 changed files with 93 additions and 2 deletions

View File

@@ -561,5 +561,15 @@ namespace winsw
return !string.IsNullOrEmpty(serviceAccountDomain) && !string.IsNullOrEmpty(serviceAccountName);
}
/// <summary>
/// True if the service can interact with the desktop.
/// </summary>
public bool SendSIGINT
{
get
{
return dom.SelectSingleNode("//sendsigint") != null;
}
}
}
}