5 references to DateOfBirth
CustomPolicyProvider (4)
artifacts\obj\CustomPolicyProvider\Release\net10.0\Microsoft.CodeAnalysis.Razor.Compiler\Microsoft.NET.Sdk.Razor.SourceGenerators.RazorSourceGenerator\Views_Account_Denied_cshtml.g.cs (1)
46var dateOfBirth = User?.FindFirst(c => c.Type == ClaimTypes.DateOfBirth)?.Value;
artifacts\obj\CustomPolicyProvider\Release\net10.0\Microsoft.CodeAnalysis.Razor.Compiler\Microsoft.NET.Sdk.Razor.SourceGenerators.RazorSourceGenerator\Views_Home_MinimumAge_cshtml.g.cs (1)
45var dateOfBirth = User.FindFirst(c => c.Type == ClaimTypes.DateOfBirth)?.Value;
Authorization\MinimumAgeAuthorizationHandler.cs (1)
32var dateOfBirthClaim = context.User.FindFirst(c => c.Type == ClaimTypes.DateOfBirth);
Controllers\AccountController.cs (1)
34claims.Add(new Claim(ClaimTypes.DateOfBirth, birthDate));
Microsoft.AspNetCore.Authentication.Facebook (1)
FacebookOptions.cs (1)
35ClaimActions.MapJsonKey(ClaimTypes.DateOfBirth, "birthday");