9 references to Backchannel
Microsoft.AspNetCore.Authentication.Facebook (2)
FacebookHandler.cs (2)
52
var response = await
Backchannel
.GetAsync(endpoint, Context.RequestAborted);
60
var context = new OAuthCreatingTicketContext(new ClaimsPrincipal(identity), properties, Context, Scheme, Options,
Backchannel
, tokens, payload.RootElement);
Microsoft.AspNetCore.Authentication.Google (2)
GoogleHandler.cs (2)
50
var response = await
Backchannel
.SendAsync(request, Context.RequestAborted);
58
var context = new OAuthCreatingTicketContext(new ClaimsPrincipal(identity), properties, Context, Scheme, Options,
Backchannel
, tokens, payload.RootElement);
Microsoft.AspNetCore.Authentication.MicrosoftAccount (2)
MicrosoftAccountHandler.cs (2)
46
var response = await
Backchannel
.SendAsync(request, Context.RequestAborted);
54
var context = new OAuthCreatingTicketContext(new ClaimsPrincipal(identity), properties, Context, Scheme, Options,
Backchannel
, tokens, payload.RootElement);
Microsoft.AspNetCore.Authentication.OAuth (3)
OAuthHandler.cs (3)
221
requestMessage.Version =
Backchannel
.DefaultRequestVersion;
222
var response = await
Backchannel
.SendAsync(requestMessage, Context.RequestAborted);
256
var context = new OAuthCreatingTicketContext(new ClaimsPrincipal(identity), properties, Context, Scheme, Options,
Backchannel
, tokens, user.RootElement);