1 type derived from AspNetWebSocketContext
System.Web (1)
WebSockets\AspNetWebSocketContextImpl.cs (1)
20internal sealed class AspNetWebSocketContextImpl : AspNetWebSocketContext {
9 references to AspNetWebSocketContext
System.ServiceModel.Activation (1)
System\ServiceModel\Activation\HostedHttpContext.cs (1)
117Task PostAcceptWebSocket(AspNetWebSocketContext context)
System.Web (8)
Abstractions\HttpContextBase.cs (2)
239public virtual void AcceptWebSocketRequest(Func<AspNetWebSocketContext, Task> userFunc) { 243public virtual void AcceptWebSocketRequest(Func<AspNetWebSocketContext, Task> userFunc, AspNetWebSocketOptions options) {
Abstractions\HttpContextWrapper.cs (2)
246public override void AcceptWebSocketRequest(Func<AspNetWebSocketContext, Task> userFunc) { 250public override void AcceptWebSocketRequest(Func<AspNetWebSocketContext, Task> userFunc, AspNetWebSocketOptions options) {
HttpContext.cs (2)
278public void AcceptWebSocketRequest(Func<AspNetWebSocketContext, Task> userFunc) { 283public void AcceptWebSocketRequest(Func<AspNetWebSocketContext, Task> userFunc, AspNetWebSocketOptions options) {
WebSocketPipeline.cs (2)
26private Func<AspNetWebSocketContext, Task> _userFunc; 29public WebSocketPipeline(RootedObjects root, HttpContext httpContext, Func<AspNetWebSocketContext, Task> userFunc, string subProtocol) {