6 references to CallCancelled
Microsoft.AspNetCore.Owin (6)
OwinEnvironment.cs (3)
51if (!_context.Items.ContainsKey(OwinConstants.CallCancelled)) 53_context.Items[OwinConstants.CallCancelled] = CancellationToken.None; 443{ OwinConstants.CallCancelled, new FeatureMap<IHttpRequestLifetimeFeature>(feature => feature.RequestAborted) },
OwinFeatureCollection.cs (2)
274get { return Prop<CancellationToken>(OwinConstants.CallCancelled); } 275set { Prop(OwinConstants.CallCancelled, value); }
WebSockets\WebSocketAcceptAdapter.cs (1)
86var webSocketAdapter = new WebSocketAdapter(webSocket, (CancellationToken)environment[OwinConstants.CallCancelled]);