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