Example #1
0
 public async Task TextChange(int docId, object docInput)
 {
     await Clients.Users(mapper.GetUsers(docId)
                         .Select(u => u.Id)
                         .Except(new string[] { Context.UserIdentifier })
                         .ToArray())
     .SendAsync("TextChange", docInput);
 }