1 write to context
System.ServiceModel (1)
System\ServiceModel\Channels\HttpChannelListener.cs (1)
1237this.context = requestContext;
13 references to context
System.ServiceModel (13)
System\ServiceModel\Channels\HttpChannelListener.cs (13)
1284this.context.InitializeHttpPipeline(this.listener.transportIntegrationHandler); 1290if (listener.UseWebSocketTransport && !context.IsWebSocketRequest) 1292this.context.SendResponseAndClose(HttpStatusCode.BadRequest, SR.GetString(SR.WebSocketEndpointOnlySupportWebSocketError)); 1296if (!listener.UseWebSocketTransport && context.IsWebSocketRequest) 1298this.context.SendResponseAndClose(HttpStatusCode.BadRequest, SR.GetString(SR.WebSocketEndpointDoesNotSupportWebSocketError)); 1304IAsyncResult result = context.BeginProcessInboundRequest(listener.Acceptor as ReplyChannelAcceptor, 1316HandleProcessInboundException(ex, this.context); 1333context.Abort(); 1342if (!this.context.ProcessAuthentication()) 1346TD.HttpAuthFailed(context.EventTraceActivity); 1372HandleProcessInboundException(ex, this.context); 1388context.Abort(); 1396context.EndProcessInboundRequest(result);