SignalR.Hosting.AspNet Passes a task returning function into another task returning function so that it can decide when it starts and returns a task that completes when all are finished Initializes the AspNet hosting pipeline Initializes the ASP.NET host and sets up the default hub route (~/signalr). Do not call this from your code. Extensions to ASP.NET routing for SignalR Maps a with the default dependency resolver to the specified url. The route table The type of The name of the route url pattern of the route. Should end with catch-all parameter. The registered route routes.MapConnection{MyConnection}("echo", "echo/{*operation}"); Maps a with the default dependency resolver to the specified url. The route table The type of The name of the route url pattern of the route. Should end with catch-all parameter. The dependency resolver to use for this connection The registered route Maps a with the default dependency resolver to the specified url. The route table The type of The name of the route url pattern of the route. Should end with catch-all parameter. The registered route routes.MapConnection("echo", "echo/{*operation}", typeof(MyConnection)); Initializes the default hub route (~/signalr). The route table The registered route Changes the dependency resolver for the default hub route (~/signalr). The route table The dependency resolver to use for the hub connection The registered route Changes the default hub route from ~/signalr to a specified url. The route table The url of the hubs route. This should *NOT* contain catch-all parameter. The registered route Changes the default hub route from ~/signalr to a specified url. The route table The url of the hubs route. This should *NOT* contain catch-all parameter. The dependency resolver to use for the hub connection The registered route Maps a with the default dependency resolver to the specified url. The route table The name of the route url pattern of the route. Should end with catch-all parameter. The type of The dependency resolver to use for the hub connection The registered route