Add period
This commit is contained in:
parent
644a4002a9
commit
a55a372476
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue