1 write to DisplayName
Microsoft.AspNetCore.Authentication.Abstractions (1)
AuthenticationScheme.cs (1)
31DisplayName = displayName;
11 references to DisplayName
IISSample (1)
Startup.cs (1)
63await context.Response.WriteAsync("DisplayName: " + scheme?.DisplayName + Environment.NewLine);
Microsoft.AspNetCore.Authentication.Test (4)
CertificateTests.cs (1)
36Assert.Null(scheme.DisplayName);
SharedAuthenticationTests.cs (1)
546Assert.Equal(DisplayName, scheme.DisplayName);
WsFederation\WsFederationTest.cs (1)
37Assert.Equal(WsFederationDefaults.AuthenticationScheme, scheme.DisplayName);
WsFederation\WsFederationTest_Handler.cs (1)
35Assert.Equal(WsFederationDefaults.AuthenticationScheme, scheme.DisplayName);
Microsoft.AspNetCore.Identity (2)
SignInManager.cs (2)
678return schemes.Where(s => !string.IsNullOrEmpty(s.DisplayName)); 711var providerDisplayName = (await GetExternalAuthenticationSchemesAsync()).FirstOrDefault(p => p.Name == provider)?.DisplayName
Microsoft.AspNetCore.Server.IISIntegration.Tests (2)
IISMiddlewareTests.cs (2)
411Assert.Null(windows.DisplayName); 456Assert.Null(windowsAuth.DisplayName);
NativeIISSample (1)
Startup.cs (1)
59await context.Response.WriteAsync("DisplayName: " + scheme?.DisplayName + Environment.NewLine);
SocialSample (1)
Startup.cs (1)
266await response.WriteAsync("<a href=\"?authscheme=" + provider.Name + "\">" + (provider.DisplayName ?? "(suppressed)") + "</a><br>");