1 write to Application
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionContext.cs (1)
1085
Application
= applicationToTransport;
14 references to Application
Microsoft.AspNetCore.Http.Connections (14)
Internal\HttpConnectionContext.cs (11)
79
/// The caller is expected to set the <see cref="Transport"/> and <see cref="
Application
"/> pipes manually.
673
Application
?.Output.CancelPendingFlush();
694
Application
?.Output.Complete();
701
Application
?.Input.CancelPendingRead();
726
Application
?.Output.Complete();
727
Application
?.Input.Complete();
736
Application
?.Output.Complete(transportTask.Exception?.InnerException);
737
Application
?.Input.Complete();
860
var longPolling = new LongPollingServerTransport(timeoutSource.Token,
Application
.Input, loggerFactory, this);
928
Application
.Input.CancelPendingRead();
1083
var applicationToTransport = new DuplexPipe(input.Reader,
Application
.Output);
Internal\HttpConnectionDispatcher.cs (3)
304
var sse = new ServerSentEventsServerTransport(connection.
Application
.Input, connection.ConnectionId, connection, _loggerFactory);
369
var ws = new WebSocketsServerTransport(options.WebSockets, connection.
Application
, connection, _loggerFactory);
687
connection.
Application
.Output.Complete();