Add period
This commit is contained in:
parent
644a4002a9
commit
a55a372476
|
|
@ -32,25 +32,25 @@ namespace Microsoft.AspNet.Authentication.Cookies
|
||||||
Task SignedIn(CookieSignedInContext context);
|
Task SignedIn(CookieSignedInContext context);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Called when a SignOut causes a redirect in the cookie middleware
|
/// Called when a SignOut causes a redirect in the cookie middleware.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="context">Contains information about the event</param>
|
/// <param name="context">Contains information about the event</param>
|
||||||
Task RedirectToLogout(CookieRedirectContext context);
|
Task RedirectToLogout(CookieRedirectContext context);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Called when a SignIn causes a redirect in the cookie middleware
|
/// Called when a SignIn causes a redirect in the cookie middleware.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="context">Contains information about the event</param>
|
/// <param name="context">Contains information about the event</param>
|
||||||
Task RedirectToLogin(CookieRedirectContext context);
|
Task RedirectToLogin(CookieRedirectContext context);
|
||||||
|
|
||||||
/// <summary>
|
/// <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>
|
/// </summary>
|
||||||
/// <param name="context">Contains information about the event</param>
|
/// <param name="context">Contains information about the event</param>
|
||||||
Task RedirectToReturnUrl(CookieRedirectContext context);
|
Task RedirectToReturnUrl(CookieRedirectContext context);
|
||||||
|
|
||||||
/// <summary>
|
/// <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>
|
/// </summary>
|
||||||
/// <param name="context">Contains information about the event</param>
|
/// <param name="context">Contains information about the event</param>
|
||||||
Task RedirectToAccessDenied(CookieRedirectContext context);
|
Task RedirectToAccessDenied(CookieRedirectContext context);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue