Skip to content

Instantly share code, notes, and snippets.

@DanielSSilva
Last active October 10, 2017 13:08
Show Gist options
  • Save DanielSSilva/f7dda987c3b517eab818649499e22c93 to your computer and use it in GitHub Desktop.
Save DanielSSilva/f7dda987c3b517eab818649499e22c93 to your computer and use it in GitHub Desktop.
SignalR Sample
namespace Microsoft.AspNetCore.SignalR
{
public interface IHubClients<T>
{
T All { get; }
T AllExcept(IReadOnlyList<string> excludedIds);
T Client(string connectionId);
T Group(string groupName);
T User(string userId);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment