我使用 PersistentConnection
创建连接路由:
protected void Application_Start(object sender, EventArgs e)
{
RouteTable.Routes.MapConnection<MyConnection>("echo", "echo/{*operation}");
}
为什么MyConnection(PersistentConnection)
每次客户端连接时都会调用两次?
我使用 PersistentConnection
创建连接路由:
protected void Application_Start(object sender, EventArgs e)
{
RouteTable.Routes.MapConnection<MyConnection>("echo", "echo/{*operation}");
}
为什么MyConnection(PersistentConnection)
每次客户端连接时都会调用两次?