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