Base:
property
Transport
Microsoft.AspNetCore.Connections.ConnectionContext.Transport
Implemented interface member:
property
Transport
Microsoft.AspNetCore.Connections.Features.IConnectionTransportFeature.Transport
2 writes to Transport
Microsoft.AspNetCore.Http.Connections (2)
Internal\HttpConnectionContext.cs (2)
71Transport = transport; 716Transport = transportToApplication;
8 references to Transport
Microsoft.AspNetCore.Http.Connections (8)
Internal\HttpConnectionContext.cs (6)
66/// The caller is expected to set the <see cref="Transport"/> and <see cref="Application"/> pipes manually. 341Transport?.Output.Complete(applicationTask.Exception?.InnerException); 342Transport?.Input.Complete(); 383Transport?.Output.Complete(); 384Transport?.Input.Complete(); 712var transportToApplication = new DuplexPipe(Transport.Input, input.Writer);
Internal\HttpConnectionDispatcher.cs (2)
228reconnectTask = connection.NotifyOnReconnect?.Invoke(connection.Transport.Output) ?? Task.CompletedTask; 264connection.Transport.Output.Complete(connection.ApplicationTask.Exception);