1 write to Application
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionContext.cs (1)
715Application = applicationToTransport;
14 references to Application
Microsoft.AspNetCore.Http.Connections (14)
Internal\HttpConnectionContext.cs (11)
66/// The caller is expected to set the <see cref="Transport"/> and <see cref="Application"/> pipes manually. 303Application?.Output.CancelPendingFlush(); 324Application?.Output.Complete(); 331Application?.Input.CancelPendingRead(); 356Application?.Output.Complete(); 357Application?.Input.Complete(); 366Application?.Output.Complete(transportTask.Exception?.InnerException); 367Application?.Input.Complete(); 490var longPolling = new LongPollingServerTransport(timeoutSource.Token, Application.Input, loggerFactory, this); 558Application.Input.CancelPendingRead(); 713var applicationToTransport = new DuplexPipe(input.Reader, Application.Output);
Internal\HttpConnectionDispatcher.cs (3)
154var sse = new ServerSentEventsServerTransport(connection.Application.Input, connection.ConnectionId, connection, _loggerFactory); 219var ws = new WebSocketsServerTransport(options.WebSockets, connection.Application, connection, _loggerFactory); 515connection.Application.Output.Complete();