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