16 references to LongPolling
Microsoft.AspNetCore.Http.Connections (12)
Internal\HttpConnectionContext.cs (1)
1124
return UseStatefulReconnect == true || TransportType == HttpTransportType.
LongPolling
;
Internal\HttpConnectionDispatcher.cs (10)
41
Transport = nameof(HttpTransportType.
LongPolling
),
316
var transport = HttpTransportType.
LongPolling
;
381
case HttpTransportType.
LongPolling
:
433
if (transport != HttpTransportType.
LongPolling
)
601
if ((options.Transports & HttpTransportType.
LongPolling
) != 0)
724
if (connection.TransportType != HttpTransportType.
LongPolling
)
789
&& (transportType == HttpTransportType.
LongPolling
|| isStatefulReconnect)
845
if (transportType == HttpTransportType.
LongPolling
)
881
if (transportType == HttpTransportType.
LongPolling
891
if (transportType == HttpTransportType.
LongPolling
&& connection.User?.Identity is WindowsIdentity)
Internal\HttpConnectionsMetrics.cs (1)
85
HttpTransportType.
LongPolling
=> "long_polling",
Microsoft.AspNetCore.Http.Connections.Client (3)
HttpConnection.cs (1)
558
_hasInherentKeepAlive = transportType == HttpTransportType.
LongPolling
;
Internal\DefaultTransportFactory.cs (2)
55
if ((availableServerTransports & HttpTransportType.
LongPolling
& _requestedTransportType) == HttpTransportType.
LongPolling
)
Microsoft.AspNetCore.Http.Connections.Common (1)
HttpTransports.cs (1)
14
public static readonly HttpTransportType All = HttpTransportType.WebSockets | HttpTransportType.ServerSentEvents | HttpTransportType.
LongPolling
;