119 references to LongPolling
JwtClientSample (1)
Microsoft.AspNetCore.Http.Connections (10)
Microsoft.AspNetCore.Http.Connections.Client (3)
Microsoft.AspNetCore.Http.Connections.Common (1)
Microsoft.AspNetCore.Http.Connections.Tests (55)
Microsoft.AspNetCore.SignalR.Client.FunctionalTests (16)
HubConnectionTests.cs (14)
60transportType ??= HttpTransportType.LongPolling | HttpTransportType.WebSockets | HttpTransportType.ServerSentEvents;
136.WithUrl(server.Url + "/negotiateProtocolVersion12", HttpTransportType.LongPolling);
166.WithUrl(server.Url + "/negotiateProtocolVersionNegative", HttpTransportType.LongPolling);
223var connection = CreateHubConnection(server.Url, "/default", HttpTransportType.LongPolling, protocol, LoggerFactory);
1130var connection = CreateHubConnection(server.Url, "/default", HttpTransportType.LongPolling, hubProtocol, LoggerFactory);
1416var connection = CreateHubConnection(server.Url, "/default", HttpTransportType.LongPolling, protocol, LoggerFactory);
1602.WithUrl(server.Url + "/default", HttpTransportType.LongPolling, options =>
1644.WithUrl(server.Url + "/default", HttpTransportType.LongPolling, options =>
1679.WithUrl(server.Url + "/default", HttpTransportType.LongPolling, options =>
2078Assert.Equal(HttpTransportType.LongPolling, transport);
2102options.Transports = HttpTransportType.LongPolling;
2379.WithUrl(server.Url + "/default", HttpTransportType.LongPolling, o => o.HttpMessageHandlerFactory = h =>
2432.WithUrl(server.Url + "/default", HttpTransportType.LongPolling, o => o.HttpMessageHandlerFactory = h =>
3050yield return new object[] { HttpTransportType.LongPolling };
Microsoft.AspNetCore.SignalR.Client.Tests (19)
Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests (1)
Microsoft.AspNetCore.SignalR.Tests (12)
SignalR.Client.FunctionalTestApp (1)