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)
34var authenticationFeatures = authOption is "None" 35? AuthenticationFeatures.None 36: AuthenticationFeatures.RegisterAndLogIn; 63var authenticationFeatures = AuthenticationFeatures.RegisterAndLogIn | AuthenticationFeatures.Passkeys; 68private async Task TestProjectCoreAsync(Project project, BrowserKind browserKind, BlazorTemplatePages pagesToExclude, AuthenticationFeatures authenticationFeatures)