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