2

我找到了关于在 SignalR 的 ConfigurationManager 上设置 KeepAlive 属性的链接:

https://github.com/SignalR/SignalR/issues/168

问题是我很难理解应该在哪里设置。我应该在 webconfig 中设置 ConfigurationManager 还是在代码中可以选择这样做?

4

1 回答 1

10

你可以在 global.asax 中设置:

protected void Application_Start()
{
   SignalR.GlobalHost.Configuration.KeepAlive = TimeSpan.FromSeconds(30);
}

https://github.com/SignalR/SignalR/wiki/Configuring-SignalR

于 2012-05-30T18:49:33.860 回答