From 1ef66c9c11bf6884d3663c5e9b46d42952957c00 Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Tue, 22 Sep 2015 16:48:50 -0700 Subject: [PATCH] Fix stuff --- samples/CookieSessionSample/Startup.cs | 2 +- .../Events/OAuthEvents.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/samples/CookieSessionSample/Startup.cs b/samples/CookieSessionSample/Startup.cs index bea9ae79d8..941911ad73 100644 --- a/samples/CookieSessionSample/Startup.cs +++ b/samples/CookieSessionSample/Startup.cs @@ -24,7 +24,7 @@ namespace CookieSessionSample { options.AutomaticAuthentication = true; options.SessionStore = new MemoryCacheTicketStore(); - })); + }); app.Run(async context => { diff --git a/src/Microsoft.AspNet.Authentication.OAuth/Events/OAuthEvents.cs b/src/Microsoft.AspNet.Authentication.OAuth/Events/OAuthEvents.cs index 357f2dfa9c..424c982805 100644 --- a/src/Microsoft.AspNet.Authentication.OAuth/Events/OAuthEvents.cs +++ b/src/Microsoft.AspNet.Authentication.OAuth/Events/OAuthEvents.cs @@ -12,12 +12,12 @@ namespace Microsoft.AspNet.Authentication.OAuth public class OAuthEvents : IOAuthEvents { /// - /// 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. /// public Func OnCreatingTicket { get; set; } = context => Task.FromResult(0); /// - /// 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. /// public Func OnSigningIn { get; set; } = context => Task.FromResult(0);