1 implementation of TransportType
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionContext.cs (1)
121public HttpTransportType TransportType { get; set; }
3 references to TransportType
Microsoft.AspNetCore.SignalR.Client.FunctionalTests (1)
Hubs.cs (1)
96return Context.Features.Get<IHttpTransportFeature>().TransportType.ToString();
SignalR.Client.FunctionalTestApp (1)
TestHub.cs (1)
112return Context.Features.Get<IHttpTransportFeature>().TransportType.ToString();
SignalRSamples (1)
ConnectionHandlers\MessagesConnectionHandler.cs (1)
19var transportType = connection.Features.Get<IHttpTransportFeature>()?.TransportType;