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)
31var authenticationFeatures = authOption is "None" 32? AuthenticationFeatures.None 33: AuthenticationFeatures.RegisterAndLogIn; 60var authenticationFeatures = AuthenticationFeatures.RegisterAndLogIn | AuthenticationFeatures.Passkeys; 65private async Task TestProjectCoreAsync(Project project, BrowserKind browserKind, BlazorTemplatePages pagesToExclude, AuthenticationFeatures authenticationFeatures)