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