1 implementation of SendAsync
NuGet.Protocol (1)
Plugins\Connection.cs (1)
225public async Task SendAsync(Message message, CancellationToken cancellationToken)
8 references to SendAsync
NuGet.Protocol (8)
Plugins\AutomaticProgressReporter.cs (1)
181await _connection.SendAsync(progress, _cancellationToken);
Plugins\InboundRequestContext.cs (2)
120await _connection.SendAsync(response, CancellationToken.None); 204await _connection.SendAsync(response, _cancellationToken);
Plugins\MessageDispatcher.cs (4)
395await connection.SendAsync(message, cancellationToken); 427await connection.SendAsync(message, cancellationToken); 455await connection.SendAsync(response, cancellationToken); 487await connection.SendAsync(message, requestContext.CancellationToken);
Plugins\PluginFactory.cs (1)
456plugin.Connection.SendAsync(message, cancellationTokenSource.Token).Wait();