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)
67
Transport
= transport;
Microsoft.AspNetCore.SignalR.Microbenchmarks (3)
HubConnectionReceiveBenchmark.cs (1)
82
connection.
Transport
= _pipe;
HubConnectionSendBenchmark.cs (1)
62
connection.
Transport
= _pipe;
HubConnectionStartBenchmark.cs (1)
48
connection.
Transport
= _pipe;
Microsoft.AspNetCore.SignalR.Tests (3)
HubConnectionHandlerTests.cs (3)
3024
client.Connection.
Transport
= customDuplex;
5293
connection.
Transport
= transportToApplication;
5295
connection.
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)
32
connection.
Transport
.Output.Complete();
75
await connection.
Transport
.Output.WriteAsync(Encoding.UTF8.GetBytes("Hello World"));
76
connection.
Transport
.Output.Complete();
98
await connection.
Transport
.Output.WriteAsync(Encoding.UTF8.GetBytes("Hello"));
99
await connection.
Transport
.Output.WriteAsync(Encoding.UTF8.GetBytes(" "));
100
await connection.
Transport
.Output.WriteAsync(Encoding.UTF8.GetBytes("World"));
102
connection.
Transport
.Output.Complete();
ServerSentEventsTests.cs (8)
30
connection.
Transport
.Output.Complete();
53
connection.
Transport
.Output.Complete();
76
await connection.
Transport
.Output.WriteAsync(Encoding.ASCII.GetBytes("Hello"));
77
connection.
Transport
.Output.Complete();
101
await connection.
Transport
.Output.WriteAsync(Encoding.ASCII.GetBytes(hText + wText));
102
connection.
Transport
.Output.Complete();
124
await connection.
Transport
.Output.WriteAsync(Encoding.UTF8.GetBytes(message));
126
connection.
Transport
.Output.Complete();
Microsoft.AspNetCore.SignalR.Tests (7)
HubConnectionHandlerTests.cs (7)
2719
client.Connection.
Transport
.Output.Complete();
2765
client.Connection.
Transport
.Output.Complete();
3023
var customDuplex = new CustomDuplex(client.Connection.
Transport
);
3118
client.Connection.
Transport
.Output.Complete();
5256
await reconnectFeature.NotifyOnReconnect(client.Connection.
Transport
.Output);
5289
var transportToApplication = new DuplexPipe(connection.
Transport
.Input, input.Writer);
5295
connection.Transport = connection.
Transport
;