6 references to WriteAsync
Microsoft.AspNetCore.SignalR.Core (2)
DefaultHubLifetimeManager.cs (2)
117var task = connection.WriteAsync(message, cancellationToken); 162var task = connection.Value.WriteAsync(message, cancellationToken);
Microsoft.AspNetCore.SignalR.StackExchangeRedis (4)
RedisHubLifetimeManager.cs (4)
467tasks.Add(connection.WriteAsync(invocation.Message).AsTask()); 579return connection.WriteAsync(invocation.Message).AsTask(); 600tasks.Add(userConnection.WriteAsync(invocation.Message).AsTask()); 631tasks.Add(groupConnection.WriteAsync(invocation.Message).AsTask());