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