2 writes to Path
Microsoft.AspNetCore.Authentication.OpenIdConnect (1)
OpenIdConnectConfigureOptions.cs (1)
100cookieBuilder.Path = cookieConfigSection[nameof(CookieBuilder.Path)] ?? cookieBuilder.Path;
Microsoft.AspNetCore.Session (1)
SessionOptions.cs (1)
51Path = SessionDefaults.CookiePath;
11 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.Components.Endpoints (2)
TempData\CookieTempDataProvider.cs (2)
141if (!string.IsNullOrEmpty(_options.TempDataCookie.Path)) 143cookieOptions.Path = _options.TempDataCookie.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>