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)
78Transport = transport; 843Transport = transportToApplication;
8 references to Transport
Microsoft.AspNetCore.Http.Connections (8)
Internal\HttpConnectionContext.cs (6)
73/// The caller is expected to set the <see cref="Transport"/> and <see cref="Application"/> pipes manually. 468Transport?.Output.Complete(applicationTask.Exception?.InnerException); 469Transport?.Input.Complete(); 510Transport?.Output.Complete(); 511Transport?.Input.Complete(); 839var transportToApplication = new DuplexPipe(Transport.Input, input.Writer);
Internal\HttpConnectionDispatcher.cs (2)
452reconnectTask = connection.NotifyOnReconnect?.Invoke(connection.Transport.Output) ?? Task.CompletedTask; 488connection.Transport.Output.Complete(connection.ApplicationTask.Exception);