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