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)
84Transport = transport; 1086Transport = transportToApplication;
8 references to Transport
Microsoft.AspNetCore.Http.Connections (8)
Internal\HttpConnectionContext.cs (6)
79/// The caller is expected to set the <see cref="Transport"/> and <see cref="Application"/> pipes manually. 711Transport?.Output.Complete(applicationTask.Exception?.InnerException); 712Transport?.Input.Complete(); 753Transport?.Output.Complete(); 754Transport?.Input.Complete(); 1082var transportToApplication = new DuplexPipe(Transport.Input, input.Writer);
Internal\HttpConnectionDispatcher.cs (2)
378reconnectTask = connection.NotifyOnReconnect?.Invoke(connection.Transport.Output) ?? Task.CompletedTask; 414connection.Transport.Output.Complete(connection.ApplicationTask.Exception);