2 implementations of IsExtendedConnect
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.FeatureCollection.cs (1)
152bool IHttpExtendedConnectFeature.IsExtendedConnect => IsExtendedConnectRequest;
Microsoft.AspNetCore.WebSockets.Tests (1)
Http2WebSocketTests.cs (1)
59public bool IsExtendedConnect { get; set; }
6 references to IsExtendedConnect
InMemory.FunctionalTests (5)
Http2\Http2WebSocketTests.cs (5)
23Assert.True(connectFeature.IsExtendedConnect); 85Assert.True(connectFeature.IsExtendedConnect); 161Assert.True(connectFeature.IsExtendedConnect); 524Assert.True(connectFeature.IsExtendedConnect); 600Assert.True(connectFeature.IsExtendedConnect);
Microsoft.AspNetCore.WebSockets (1)
WebSocketMiddleware.cs (1)
114if (_connectFeature?.IsExtendedConnect == true)