Skip to content

Instantly share code, notes, and snippets.

@diegobersano
Last active May 2, 2016 01:15
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 diegobersano/42021fb193532d4c18e67bda29267322 to your computer and use it in GitHub Desktop.
Save diegobersano/42021fb193532d4c18e67bda29267322 to your computer and use it in GitHub Desktop.
/// <summary>
/// Quita al cliente del grupo especificado.
/// </summary>
/// <param name="groupName">Nombre del grupo.</param>
public void LeaveGroup(string groupName)
{
Groups.Remove(Context.ConnectionId, groupName);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment