10 writes to IsEssential
Microsoft.AspNetCore.Antiforgery (1)
AntiforgeryOptions.cs (1)
24IsEssential = true,
Microsoft.AspNetCore.Authentication (1)
RemoteAuthenticationOptions.cs (1)
30IsEssential = true,
Microsoft.AspNetCore.Authentication.Cookies (1)
CookieAuthenticationOptions.cs (1)
22IsEssential = true,
Microsoft.AspNetCore.Authentication.OpenIdConnect (2)
OpenIdConnectConfigureOptions.cs (1)
96cookieBuilder.IsEssential = StringHelpers.ParseValueOrDefault(cookieConfigSection[nameof(cookieBuilder.IsEssential)], bool.Parse, cookieBuilder.IsEssential);
OpenIdConnectOptions.cs (1)
84IsEssential = true,
Microsoft.AspNetCore.Authentication.Twitter (1)
TwitterOptions.cs (1)
36IsEssential = true,
Microsoft.AspNetCore.CookiePolicy (1)
CookiePolicyOptions.cs (1)
49IsEssential = true,
Microsoft.AspNetCore.Identity.FunctionalTests (1)
Infrastructure\ServerFactory.cs (1)
50.AddCookieTempDataProvider(o => o.Cookie.IsEssential = true);
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
CookieTempDataProviderOptions.cs (1)
25IsEssential = false,
Microsoft.AspNetCore.Session (1)
SessionOptions.cs (1)
56IsEssential = false;
12 references to IsEssential
Microsoft.AspNetCore.Antiforgery (1)
AntiforgeryOptions.cs (1)
50/// <item><description><see cref="CookieBuilder.IsEssential"/> defaults to <c>true</c>. The cookie used by the antiforgery system
Microsoft.AspNetCore.Authentication (1)
RemoteAuthenticationOptions.cs (1)
148/// <item><description><see cref="CookieBuilder.IsEssential"/> defaults to <c>true</c>.</description></item>
Microsoft.AspNetCore.Authentication.OpenIdConnect (3)
OpenIdConnectConfigureOptions.cs (2)
96cookieBuilder.IsEssential = StringHelpers.ParseValueOrDefault(cookieConfigSection[nameof(cookieBuilder.IsEssential)], bool.Parse, cookieBuilder.IsEssential);
OpenIdConnectOptions.cs (1)
323/// <item><description><see cref="CookieBuilder.IsEssential"/> defaults to <c>true</c>.</description></item>
Microsoft.AspNetCore.Authentication.Test (2)
OpenIdConnect\OpenIdConnectTests.cs (2)
478Assert.False(options.CorrelationCookie.IsEssential); 485Assert.True(options.NonceCookie.IsEssential);
Microsoft.AspNetCore.Authentication.Twitter (1)
TwitterOptions.cs (1)
91/// <item><description><see cref="CookieBuilder.IsEssential"/> defaults to <c>true</c>.</description></item>
Microsoft.AspNetCore.CookiePolicy (1)
CookiePolicyOptions.cs (1)
41/// <item><description><see cref="CookieBuilder.IsEssential"/> defaults to <c>true</c>.</description></item>
Microsoft.AspNetCore.Http.Abstractions (1)
CookieBuilder.cs (1)
116IsEssential = IsEssential,
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
CookieTempDataProviderOptions.cs (1)
45/// <item><description><see cref="CookieBuilder.IsEssential"/> defaults to <c>false</c>. This property is only considered when a
Microsoft.AspNetCore.Session (1)
SessionOptions.cs (1)
25/// <item><description><see cref="CookieBuilder.IsEssential"/> defaults to <c>false</c>.</description></item>