5 references to DashboardAuthenticationCookieNames
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
891
var (authCookieName, httpAuthCookieName) =
DashboardAuthenticationCookieNames
.Create(dashboardOptions.GetApplicationNameOrDefault());
Aspire.Dashboard.Tests (4)
DashboardOptionsTests.cs (3)
439
var (authCookieName, httpAuthCookieName) =
DashboardAuthenticationCookieNames
.Create(applicationName);
448
var first =
DashboardAuthenticationCookieNames
.Create($"{new string('a', 32)}-first");
449
var second =
DashboardAuthenticationCookieNames
.Create($"{new string('a', 32)}-second");
Integration\FrontendBrowserTokenAuthTests.cs (1)
20
private static readonly (string AuthCookieName, string HttpAuthCookieName) s_cookieNames =
DashboardAuthenticationCookieNames
.Create(ApplicationName);