10 references to None
Microsoft.AspNetCore.Http.Connections (6)
Internal\HttpConnectionContext.cs (2)
588
if (TransportType == HttpTransportType.
None
)
629
Debug.Assert(TransportType != HttpTransportType.
None
, "Transport has not been initialized yet");
Internal\HttpConnectionDispatcher.cs (1)
215
case HttpTransportType.
None
:
Internal\HttpConnectionManager.cs (1)
95
if (connection.TransportType != HttpTransportType.
None
)
Internal\HttpConnectionsMetrics.cs (2)
58
Debug.Assert(transportType != HttpTransportType.
None
);
73
if (transportType != HttpTransportType.
None
)
Microsoft.AspNetCore.Http.Connections.Tests (2)
HttpConnectionDispatcherTests.cs (2)
253
[InlineData(HttpTransportType.
None
)]
275
var availableTransports = HttpTransportType.
None
;
Microsoft.AspNetCore.SignalR.Client.Tests (1)
HttpConnectionTests.Negotiate.cs (1)
56
return RunInvalidNegotiateResponseTest<NoTransportSupportedException>(ResponseUtils.CreateNegotiationContent(transportTypes: HttpTransportType.
None
), "None of the transports supported by the client are supported by the server.");
Microsoft.AspNetCore.SignalR.Tests (1)
DefaultTransportFactoryTests.cs (1)
20
[InlineData(HttpTransportType.
None
)]