1 instantiation of TwitterCreatingTicketContext
Microsoft.AspNetCore.Authentication.Twitter (1)
TwitterHandler.cs (1)
157
var context = new
TwitterCreatingTicketContext
(Context, Scheme, Options, new ClaimsPrincipal(identity), properties, token.UserId, token.ScreenName, token.Token, token.TokenSecret, user);
4 references to TwitterCreatingTicketContext
Microsoft.AspNetCore.Authentication.Twitter (4)
TwitterCreatingTicketContext.cs (1)
16
/// Initializes a <see cref="
TwitterCreatingTicketContext
"/>
TwitterEvents.cs (2)
14
public Func<
TwitterCreatingTicketContext
, Task> OnCreatingTicket { get; set; } = context => Task.CompletedTask;
30
public virtual Task CreatingTicket(
TwitterCreatingTicketContext
context) => OnCreatingTicket(context);
TwitterHandler.cs (1)
157
var
context = new TwitterCreatingTicketContext(Context, Scheme, Options, new ClaimsPrincipal(identity), properties, token.UserId, token.ScreenName, token.Token, token.TokenSecret, user);