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