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)
71
Transport
= transport;
716
Transport
= 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.
341
Transport
?.Output.Complete(applicationTask.Exception?.InnerException);
342
Transport
?.Input.Complete();
383
Transport
?.Output.Complete();
384
Transport
?.Input.Complete();
712
var transportToApplication = new DuplexPipe(
Transport
.Input, input.Writer);
Internal\HttpConnectionDispatcher.cs (2)
228
reconnectTask = connection.NotifyOnReconnect?.Invoke(connection.
Transport
.Output) ?? Task.CompletedTask;
264
connection.
Transport
.Output.Complete(connection.ApplicationTask.Exception);