1 implementation of SendAsync
NuGet.Protocol (1)
Plugins\Connection.cs (1)
227public async Task SendAsync(Message message, CancellationToken cancellationToken)
8 references to SendAsync
NuGet.Protocol (8)
Plugins\AutomaticProgressReporter.cs (1)
183await _connection.SendAsync(progress, _cancellationToken);
Plugins\InboundRequestContext.cs (2)
122await _connection.SendAsync(response, CancellationToken.None); 206await _connection.SendAsync(response, _cancellationToken);
Plugins\MessageDispatcher.cs (4)
396await connection.SendAsync(message, cancellationToken); 428await connection.SendAsync(message, cancellationToken); 456await connection.SendAsync(response, cancellationToken); 488await connection.SendAsync(message, requestContext.CancellationToken);
Plugins\PluginFactory.cs (1)
453plugin.Connection.SendAsync(message, cancellationTokenSource.Token).Wait();