13 references to AuthenticationFeatures
Templates.Blazor.Tests (13)
BlazorTemplateTest.cs (6)
90AuthenticationFeatures authenticationFeatures = AuthenticationFeatures.None) 114AuthenticationFeatures authenticationFeatures = AuthenticationFeatures.None) 139if (authenticationFeatures.HasFlag(AuthenticationFeatures.RegisterAndLogIn)) 204if (authenticationFeatures.HasFlag(AuthenticationFeatures.Passkeys))
BlazorWebTemplateTest.cs (7)
33var authenticationFeatures = authOption is "None" 34? AuthenticationFeatures.None 35: AuthenticationFeatures.RegisterAndLogIn; 62var authenticationFeatures = AuthenticationFeatures.RegisterAndLogIn | AuthenticationFeatures.Passkeys; 67private async Task TestProjectCoreAsync(Project project, BrowserKind browserKind, BlazorTemplatePages pagesToExclude, AuthenticationFeatures authenticationFeatures)