5 instantiations of TicketDataFormat
Microsoft.AspNetCore.Authentication.BearerToken (2)
BearerTokenConfigureOptions.cs (2)
20options.BearerTokenProtector = new TicketDataFormat(dp.CreateProtector(_primaryPurpose, schemeName, "BearerToken")); 21options.RefreshTokenProtector = new TicketDataFormat(dp.CreateProtector(_primaryPurpose, schemeName, "RefreshToken"));
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);
3 references to TicketDataFormat
Microsoft.AspNetCore.Authentication (1)
TicketDataFormat.cs (1)
15/// Initializes a new instance of <see cref="TicketDataFormat"/>.
Microsoft.AspNetCore.Authentication.BearerToken (2)
BearerTokenOptions.cs (2)
45/// bearer token. If not provided, one will be created using <see cref="TicketDataFormat"/> and the <see cref="IDataProtectionProvider"/> 56/// refresh token. If not provided, one will be created using <see cref="TicketDataFormat"/> and the <see cref="IDataProtectionProvider"/>