1 instantiation of CookieSigningOutContext
Microsoft.AspNetCore.Authentication.Cookies (1)
CookieAuthenticationHandler.cs (1)
395var context = new CookieSigningOutContext(
5 references to CookieSigningOutContext
Microsoft.AspNetCore.Authentication.Cookies (5)
CookieAuthenticationEvents.cs (3)
37public Func<CookieSigningOutContext, Task> OnSigningOut { get; set; } = context => Task.CompletedTask; 138/// <param name="context">The <see cref="CookieSigningOutContext"/>.</param> 139public virtual Task SigningOut(CookieSigningOutContext context) => OnSigningOut(context);
CookieAuthenticationHandler.cs (1)
395var context = new CookieSigningOutContext(
CookieSigningOutContext.cs (1)
9/// Context object passed to the <see cref="CookieAuthenticationEvents.SigningOut(CookieSigningOutContext)"/>