1 instantiation of AspNetWebSocket
System.Web (1)
WebSocketPipeline.cs (1)
89webSocket = new AspNetWebSocket(pipe, _subProtocol);
6 references to AspNetWebSocket
System.Web (6)
WebSocketPipeline.cs (4)
42Task<AspNetWebSocket> webSocketTask = ProcessRequestImplAsync(); 47Task abortTask = webSocketTask.ContinueWith(task => (task.Result != null) ? ((AspNetWebSocket)task.Result).AbortAsync() : (Task)null, TaskContinuationOptions.ExecuteSynchronously).Unwrap(); 68private async Task<AspNetWebSocket> ProcessRequestImplAsync() { 69AspNetWebSocket webSocket = null;
WebSockets\AspNetWebSocketContextImpl.cs (2)
28private readonly AspNetWebSocket _webSocket; 32public AspNetWebSocketContextImpl(HttpContextBase httpContext = null, HttpWorkerRequest workerRequest = null, AspNetWebSocket webSocket = null) {