Add period

This commit is contained in:
Hao Kung 2015-09-22 16:21:40 -07:00
parent 644a4002a9
commit a55a372476
1 changed files with 4 additions and 4 deletions

View File

@ -32,25 +32,25 @@ namespace Microsoft.AspNet.Authentication.Cookies
Task SignedIn(CookieSignedInContext context);
/// <summary>
/// Called when a SignOut causes a redirect in the cookie middleware
/// Called when a SignOut causes a redirect in the cookie middleware.
/// </summary>
/// <param name="context">Contains information about the event</param>
Task RedirectToLogout(CookieRedirectContext context);
/// <summary>
/// Called when a SignIn causes a redirect in the cookie middleware
/// Called when a SignIn causes a redirect in the cookie middleware.
/// </summary>
/// <param name="context">Contains information about the event</param>
Task RedirectToLogin(CookieRedirectContext context);
/// <summary>
/// Called when redirecting back to the return url in the cookie middleware
/// Called when redirecting back to the return url in the cookie middleware.
/// </summary>
/// <param name="context">Contains information about the event</param>
Task RedirectToReturnUrl(CookieRedirectContext context);
/// <summary>
/// Called when an access denied causes a redirect in the cookie middleware
/// Called when an access denied causes a redirect in the cookie middleware.
/// </summary>
/// <param name="context">Contains information about the event</param>
Task RedirectToAccessDenied(CookieRedirectContext context);