2 implementations of ITicketStore
CookieSessionSample (1)
MemoryCacheTicketStore.cs (1)
10public class MemoryCacheTicketStore : ITicketStore
Microsoft.AspNetCore.Authentication.Test (1)
CookieTests.cs (1)
151private class TestTicketStore : ITicketStore
3 references to ITicketStore
CookieSessionSample (2)
Startup.cs (2)
21services.AddSingleton<ITicketStore, MemoryCacheTicketStore>(); 23.Configure<ITicketStore>((o, ticketStore) => o.SessionStore = ticketStore);
Microsoft.AspNetCore.Authentication.Cookies (1)
CookieAuthenticationOptions.cs (1)
122public ITicketStore? SessionStore { get; set; }