Skip to content

Instantly share code, notes, and snippets.

@ShawInnes
Last active January 3, 2016 15:48
Show Gist options
  • Save ShawInnes/8484854 to your computer and use it in GitHub Desktop.
Save ShawInnes/8484854 to your computer and use it in GitHub Desktop.
ASP.NET SignalR Startup
[assembly: OwinStartup(typeof(WebSite))]
public partial class Startup
{
public void Configuration(IAppBuilder app)
{
app.MapSignalR();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment