1 write to RefreshTokenProtector
Microsoft.AspNetCore.Authentication.BearerToken (1)
BearerTokenConfigureOptions.cs (1)
21
options.
RefreshTokenProtector
= new TicketDataFormat(dp.CreateProtector(_primaryPurpose, schemeName, "RefreshToken"));
3 references to RefreshTokenProtector
Microsoft.AspNetCore.Authentication.BearerToken (2)
BearerTokenOptions.cs (2)
55
/// If set, the <see cref="
RefreshTokenProtector
"/> is used to protect and unprotect the identity and other properties which are stored in the
61
get => _refreshTokenProtector ?? throw new InvalidOperationException($"{nameof(
RefreshTokenProtector
)} was not set.");
Microsoft.AspNetCore.Identity (1)
IdentityApiEndpointRouteBuilderExtensions.cs (1)
126
var refreshTokenProtector = bearerTokenOptions.Get(IdentityConstants.BearerScheme).
RefreshTokenProtector
;