Fix stuff
This commit is contained in:
parent
78d1d0099f
commit
1ef66c9c11
|
|
@ -24,7 +24,7 @@ namespace CookieSessionSample
|
||||||
{
|
{
|
||||||
options.AutomaticAuthentication = true;
|
options.AutomaticAuthentication = true;
|
||||||
options.SessionStore = new MemoryCacheTicketStore();
|
options.SessionStore = new MemoryCacheTicketStore();
|
||||||
}));
|
});
|
||||||
|
|
||||||
app.Run(async context =>
|
app.Run(async context =>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -12,12 +12,12 @@ namespace Microsoft.AspNet.Authentication.OAuth
|
||||||
public class OAuthEvents : IOAuthEvents
|
public class OAuthEvents : IOAuthEvents
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the function that is invoked when the Authenticated method is invoked.
|
/// Gets or sets the function that is invoked when the CreatingTicket method is invoked.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Func<OAuthCreatingTicketContext, Task> OnCreatingTicket { get; set; } = context => Task.FromResult(0);
|
public Func<OAuthCreatingTicketContext, Task> OnCreatingTicket { get; set; } = context => Task.FromResult(0);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the function that is invoked when the ReturnEndpoint method is invoked.
|
/// Gets or sets the function that is invoked when the SigningIn method is invoked.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Func<SigningInContext, Task> OnSigningIn { get; set; } = context => Task.FromResult(0);
|
public Func<SigningInContext, Task> OnSigningIn { get; set; } = context => Task.FromResult(0);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue