This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Web; | |
/* | |
MIT License | |
Copyright (c) 2014 Christian Weyer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace WebApi.SignalR | |
{ | |
/// <summary> | |
/// Simple Web API & SignalR integration. | |
/// No access to full hub, e.g. HubCallerContext. | |
/// </summary> | |
/// <typeparam name="THub"></typeparam> | |
public abstract class HubApiController<THub> : ApiController | |
where THub : IHub | |
{ |