25 writes to CheckConsentNeeded
BasicWebSite (1)
StartupWithCookieTempDataProviderAndCookieConsent.cs (1)
15o.CheckConsentNeeded = httpContext => true;
CookiePolicySample (1)
Startup.cs (1)
19options.CheckConsentNeeded = context => context.Request.PathBase.Equals("/NeedsConsent");
Identity.DefaultUI.WebSite (3)
NoIdentityStartup.cs (1)
24options.CheckConsentNeeded = context => true;
PocoUserStartup.cs (1)
21options.CheckConsentNeeded = context => true;
StartupBase.cs (1)
30options.CheckConsentNeeded = context => true;
Microsoft.AspNetCore.CookiePolicy.Test (20)
CookieConsentTests.cs (20)
38options.CheckConsentNeeded = context => true; 57options.CheckConsentNeeded = context => true; 76options.CheckConsentNeeded = context => true; 102options.CheckConsentNeeded = context => true; 121options.CheckConsentNeeded = context => true; 151options.CheckConsentNeeded = context => true; 174options.CheckConsentNeeded = context => true; 197options.CheckConsentNeeded = context => true; 238options.CheckConsentNeeded = context => true; 282options.CheckConsentNeeded = context => true; 313options.CheckConsentNeeded = context => true; 346options.CheckConsentNeeded = context => true; 374options.CheckConsentNeeded = context => true; 417options.CheckConsentNeeded = context => true; 459options.CheckConsentNeeded = context => true; 497options.CheckConsentNeeded = context => true; 524options.CheckConsentNeeded = context => true; 552options.CheckConsentNeeded = context => true; 596options.CheckConsentNeeded = context => true; 649options.CheckConsentNeeded = context => true;
2 references to CheckConsentNeeded
Microsoft.AspNetCore.CookiePolicy (2)
ResponseCookiesWrapper.cs (2)
41_isConsentNeeded = Options.CheckConsentNeeded == null ? false 42: Options.CheckConsentNeeded(Context);