Skip to content

Instantly share code, notes, and snippets.

@devdays
Created November 30, 2014 20:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devdays/3bf30582a46465bbcd74 to your computer and use it in GitHub Desktop.
Save devdays/3bf30582a46465bbcd74 to your computer and use it in GitHub Desktop.
using System;
using System.Web.Routing;
namespace SignalR
{
public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
// Register the default hubs route: ~/signalr/hubs
RouteTable.Routes.MapHubs();
}
// .. other Application_ methods
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment