The domain for which the cookie is valid. The default is the host that this cookie has been received from. Note that, for instance, ".bing.com", "bing.com", and "www.bing.com" are considered different domains.
The expiration date and time for the cookie as the number of seconds since the UNIX epoch. The default is -1.0, which means cookies are session cookies by default.
Whether this cookie is http-only. True if a page script or other active content cannot access this cookie. The default is false.
The security level of this cookie. True if the client is only to return the cookie in subsequent requests if those requests use HTTPS. The default is false. Note that cookie that requests COREWEBVIEW2_COOKIE_SAME_SITE_KIND_NONE but is not marked Secure will be rejected.
Whether this is a session cookie. The default is false.
Cookie name.
The path for which the cookie is valid. The default is "/", which means this cookie will be sent to all pages on the Domain.
SameSite status of the cookie which represents the enforcement mode of the cookie. The default is COREWEBVIEW2_COOKIE_SAME_SITE_KIND_LAX.
Cookie value.
Set the Expires property. Cookies are session cookies and will not be persistent if Expires is set to -1.0. NaN, infinity, and any negative value set other than -1.0 is disallowed.
Set the IsHttpOnly property.
Set the IsSecure property.
Set the SameSite property.
Set the cookie value property.