Base:
property
Transport
Microsoft.AspNetCore.Connections.ConnectionContext.Transport
Implemented interface member:
property
Transport
Microsoft.AspNetCore.Connections.Features.IConnectionTransportFeature.Transport
7 writes to Transport
Microsoft.AspNetCore.Connections.Abstractions (1)
DefaultConnectionContext.cs (1)
67Transport = transport;
Microsoft.AspNetCore.SignalR.Microbenchmarks (3)
HubConnectionReceiveBenchmark.cs (1)
82connection.Transport = _pipe;
HubConnectionSendBenchmark.cs (1)
62connection.Transport = _pipe;
HubConnectionStartBenchmark.cs (1)
48connection.Transport = _pipe;
Microsoft.AspNetCore.SignalR.Tests (3)
HubConnectionHandlerTests.cs (3)
3024client.Connection.Transport = customDuplex; 5293connection.Transport = transportToApplication; 5295connection.Transport = connection.Transport;
25 references to Transport
Microsoft.AspNetCore.Connections.Abstractions (3)
DefaultConnectionContext.cs (3)
31/// The caller is expected to set the <see cref="Transport"/> and <see cref="Application"/> pipes manually. 40/// The caller is expected to set the <see cref="Transport"/> and <see cref="Application"/> pipes manually. 62/// <param name="transport">The <see cref="Transport"/>.</param>
Microsoft.AspNetCore.Http.Connections.Tests (15)
LongPollingTests.cs (7)
32connection.Transport.Output.Complete(); 75await connection.Transport.Output.WriteAsync(Encoding.UTF8.GetBytes("Hello World")); 76connection.Transport.Output.Complete(); 98await connection.Transport.Output.WriteAsync(Encoding.UTF8.GetBytes("Hello")); 99await connection.Transport.Output.WriteAsync(Encoding.UTF8.GetBytes(" ")); 100await connection.Transport.Output.WriteAsync(Encoding.UTF8.GetBytes("World")); 102connection.Transport.Output.Complete();
ServerSentEventsTests.cs (8)
30connection.Transport.Output.Complete(); 53connection.Transport.Output.Complete(); 76await connection.Transport.Output.WriteAsync(Encoding.ASCII.GetBytes("Hello")); 77connection.Transport.Output.Complete(); 101await connection.Transport.Output.WriteAsync(Encoding.ASCII.GetBytes(hText + wText)); 102connection.Transport.Output.Complete(); 124await connection.Transport.Output.WriteAsync(Encoding.UTF8.GetBytes(message)); 126connection.Transport.Output.Complete();
Microsoft.AspNetCore.SignalR.Tests (7)
HubConnectionHandlerTests.cs (7)
2719client.Connection.Transport.Output.Complete(); 2765client.Connection.Transport.Output.Complete(); 3023var customDuplex = new CustomDuplex(client.Connection.Transport); 3118client.Connection.Transport.Output.Complete(); 5256await reconnectFeature.NotifyOnReconnect(client.Connection.Transport.Output); 5289var transportToApplication = new DuplexPipe(connection.Transport.Input, input.Writer); 5295connection.Transport = connection.Transport;