3 writes to TicketDataFormat
Microsoft.AspNetCore.Authentication.Cookies (1)
PostConfigureCookieAuthenticationOptions.cs (1)
44options.TicketDataFormat = new TicketDataFormat(dataProtector);
Microsoft.AspNetCore.Authentication.Test (2)
CookieTests.cs (2)
1651o.TicketDataFormat = new TicketDataFormat(dp); 1676o.TicketDataFormat = new TicketDataFormat(dp);
4 references to TicketDataFormat
Microsoft.AspNetCore.Authentication.Cookies (4)
CookieAuthenticationHandler.cs (3)
158var ticket = Options.TicketDataFormat.Unprotect(cookie, GetTlsTokenBinding()); 272var cookieValue = Options.TicketDataFormat.Protect(ticket, GetTlsTokenBinding()); 356var cookieValue = Options.TicketDataFormat.Protect(ticket, GetTlsTokenBinding());
PostConfigureCookieAuthenticationOptions.cs (1)
40if (options.TicketDataFormat == null)