8 writes to Path
Microsoft.AspNetCore.Antiforgery.Test (1)
DefaultAntiforgeryTokenStoreTest.cs (1)
455Path = expectedCookiePath
Microsoft.AspNetCore.Authentication.OpenIdConnect (1)
OpenIdConnectConfigureOptions.cs (1)
100cookieBuilder.Path = cookieConfigSection[nameof(CookieBuilder.Path)] ?? cookieBuilder.Path;
Microsoft.AspNetCore.Authentication.Test (4)
CookieTests.cs (1)
361o.Cookie.Path = "/foo";
OAuthTests.cs (1)
150opt.CorrelationCookie.Path = "/";
OpenIdConnect\OpenIdConnectTests.cs (2)
95opt.NonceCookie.Path = "/"; 148opt.CorrelationCookie.Path = "/";
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (1)
CookieTempDataProviderTest.cs (1)
240Path = optionsPath,
Microsoft.AspNetCore.Session (1)
SessionOptions.cs (1)
51Path = SessionDefaults.CookiePath;
9 references to Path
Microsoft.AspNetCore.Antiforgery (2)
Internal\DefaultAntiforgeryTokenStore.cs (2)
86if (_options.Cookie.Path != null) 88options.Path = _options.Cookie.Path;
Microsoft.AspNetCore.Authentication (1)
RequestPathBaseCookieBuilder.cs (1)
25var path = Path;
Microsoft.AspNetCore.Authentication.OpenIdConnect (2)
OpenIdConnectConfigureOptions.cs (2)
100cookieBuilder.Path = cookieConfigSection[nameof(CookieBuilder.Path)] ?? cookieBuilder.Path;
Microsoft.AspNetCore.Http.Abstractions (1)
CookieBuilder.cs (1)
111Path = Path ?? "/",
Microsoft.AspNetCore.Mvc.ViewFeatures (2)
CookieTempDataProvider.cs (2)
125if (!string.IsNullOrEmpty(_options.Cookie.Path)) 127cookieOptions.Path = _options.Cookie.Path;
Microsoft.AspNetCore.Session (1)
SessionOptions.cs (1)
22/// <item><description><see cref="CookieBuilder.Path"/> defaults to <see cref="SessionDefaults.CookiePath"/>.</description></item>