31 instantiations of OAuthEvents
Microsoft.AspNetCore.Authentication.OAuth (2)
OAuthHandler.cs (1)
61
protected override Task<object> CreateEventsAsync() => Task.FromResult<object>(new
OAuthEvents
());
OAuthOptions.cs (1)
19
Events = new
OAuthEvents
();
Microsoft.AspNetCore.Authentication.Test (23)
FacebookTests.cs (1)
93
o.Events = new
OAuthEvents
GoogleTests.cs (15)
323
o.Events = new
OAuthEvents
385
o.Events = redirect ? new
OAuthEvents
()
393
} : new
OAuthEvents
();
420
o.Events = new
OAuthEvents
()
451
o.Events = new
OAuthEvents
()
496
o.Events = redirect ? new
OAuthEvents
()
511
} : new
OAuthEvents
();
604
o.Events = redirect ? new
OAuthEvents
()
612
} : new
OAuthEvents
();
657
o.Events = redirect ? new
OAuthEvents
()
665
} : new
OAuthEvents
();
701
o.Events = new
OAuthEvents
743
o.Events = new
OAuthEvents
778
o.Events = new
OAuthEvents
()
836
o.Events = new
OAuthEvents
()
MicrosoftAccountTests.cs (2)
53
o.Events = new
OAuthEvents
223
o.Events = new
OAuthEvents
OAuthTests.cs (5)
332
opt.Events = new
OAuthEvents
()
367
opt.Events = new
OAuthEvents
()
403
opt.Events = new
OAuthEvents
()
453
opt.Events = new
OAuthEvents
()
496
opt.Events = new
OAuthEvents
()
SocialSample (6)
Startup.cs (6)
54
o.Events = new
OAuthEvents
()
70
o.Events = new
OAuthEvents
()
107
o.Events = new
OAuthEvents
()
131
o.Events = new
OAuthEvents
162
o.Events = new
OAuthEvents
()
192
o.Events = new
OAuthEvents
6 references to OAuthEvents
Microsoft.AspNetCore.Authentication.OAuth (6)
OAuthHandler.cs (2)
34
protected new
OAuthEvents
Events
36
get { return (
OAuthEvents
)base.Events; }
OAuthOptions.cs (4)
63
/// <see cref="
OAuthEvents
.OnCreatingTicket" />.
68
/// Gets or sets the <see cref="
OAuthEvents
"/> used to handle authentication events.
70
public new
OAuthEvents
Events
72
get { return (
OAuthEvents
)base.Events; }