停止服务器服务
本文关键字:服务 服务器 | 更新日期: 2023-09-27 18:04:05
使用c# winforms应用程序启动
创建Startup配置文件
[assembly: OwinStartup(typeof(Chatter.Host.Startup))]
namespace Chatter.Host
{
public class Startup
{
public void Configuration(IAppBuilder app)
{
// Any connection or hub wire up and configuration should go here
app.MapSignalR();
}
}
然后在我的windows窗体上:
private void StartServer()
{
try
{
SignalR = WebApp.Start(URL);
}
catch (TargetInvocationException)
{
//Todo
}
this.Invoke((Action) (() => richTextBox1.AppendText("Server running on " + URL)));
我如何去停止'重新启动OWIN服务,示例将是伟大的?
private void StopServer()
{
try
{
//STOP!!
}
catch (TargetInvocationException)
{
}
}
WebApp.Start()应该返回一个IDisposable对象,您可以保留该对象,并在以后想要停止服务器时将其丢弃。您将需要进行适当的安全检查/异常处理,但一个简单的例子是:
private IDisposable myServer;
public void Start() {
myServer = WebApp.Start(URL);
}
public void Stop() {
myServer.Dispose();
}