1 write to Application
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionContext.cs (1)
842Application = applicationToTransport;
14 references to Application
Microsoft.AspNetCore.Http.Connections (14)
Internal\HttpConnectionContext.cs (11)
73/// The caller is expected to set the <see cref="Transport"/> and <see cref="Application"/> pipes manually. 430Application?.Output.CancelPendingFlush(); 451Application?.Output.Complete(); 458Application?.Input.CancelPendingRead(); 483Application?.Output.Complete(); 484Application?.Input.Complete(); 493Application?.Output.Complete(transportTask.Exception?.InnerException); 494Application?.Input.Complete(); 617var longPolling = new LongPollingServerTransport(timeoutSource.Token, Application.Input, loggerFactory, this); 685Application.Input.CancelPendingRead(); 840var applicationToTransport = new DuplexPipe(input.Reader, Application.Output);
Internal\HttpConnectionDispatcher.cs (3)
378var sse = new ServerSentEventsServerTransport(connection.Application.Input, connection.ConnectionId, connection, _loggerFactory); 443var ws = new WebSocketsServerTransport(options.WebSockets, connection.Application, connection, _loggerFactory); 756connection.Application.Output.Complete();