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)
100
o.Events = new
OAuthEvents
GoogleTests.cs (15)
330
o.Events = new
OAuthEvents
392
o.Events = redirect ? new
OAuthEvents
()
400
} : new
OAuthEvents
();
427
o.Events = new
OAuthEvents
()
458
o.Events = new
OAuthEvents
()
503
o.Events = redirect ? new
OAuthEvents
()
518
} : new
OAuthEvents
();
611
o.Events = redirect ? new
OAuthEvents
()
619
} : new
OAuthEvents
();
664
o.Events = redirect ? new
OAuthEvents
()
672
} : new
OAuthEvents
();
708
o.Events = new
OAuthEvents
750
o.Events = new
OAuthEvents
785
o.Events = new
OAuthEvents
()
843
o.Events = new
OAuthEvents
()
MicrosoftAccountTests.cs (2)
60
o.Events = new
OAuthEvents
230
o.Events = new
OAuthEvents
OAuthTests.cs (5)
339
opt.Events = new
OAuthEvents
()
374
opt.Events = new
OAuthEvents
()
410
opt.Events = new
OAuthEvents
()
460
opt.Events = new
OAuthEvents
()
503
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; }