-
Notifications
You must be signed in to change notification settings - Fork 0
Cookies
Marthijn van den Heuvel edited this page Sep 11, 2024
·
3 revisions
A cookie (also known as a web cookie or browser cookie) is a small piece of data a server sends to a user's web browser. The browser may store cookies, create new cookies, modify existing ones, and send them back to the same server with later requests.
In the default configuration, the Secure attribute is set to true, the HttpOnly attribute
is set to true, and the MinimumSameSitePolicy is set to Strict.
app.UseSecureCookiePolicy();Parts of this wiki may come from, or be based on, the MDN Web Doc's. Documentation by Mozilla Contributors is licensed under CC-BY-SA 2.5 or any later version.