10 references to None
Microsoft.AspNetCore.Http.Connections (6)
Internal\HttpConnectionContext.cs (2)
588if (TransportType == HttpTransportType.None) 629Debug.Assert(TransportType != HttpTransportType.None, "Transport has not been initialized yet");
Internal\HttpConnectionDispatcher.cs (1)
215case HttpTransportType.None:
Internal\HttpConnectionManager.cs (1)
95if (connection.TransportType != HttpTransportType.None)
Internal\HttpConnectionsMetrics.cs (2)
58Debug.Assert(transportType != HttpTransportType.None); 73if (transportType != HttpTransportType.None)
Microsoft.AspNetCore.Http.Connections.Tests (2)
HttpConnectionDispatcherTests.cs (2)
253[InlineData(HttpTransportType.None)] 275var availableTransports = HttpTransportType.None;
Microsoft.AspNetCore.SignalR.Client.Tests (1)
HttpConnectionTests.Negotiate.cs (1)
56return 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)]