Click or drag to resize
IHttpCookie Interface
Defines implementation to create and manipulate individual HTTP cookies.

Namespace: CMS.Base.Internal
Assembly: CMS.Base (in CMS.Base.dll) Version: 13.0.131
Syntax
C#
public interface IHttpCookie

The IHttpCookie type exposes the following members.

Properties
  NameDescription
Public propertyDomain
Gets or sets the domain to associate the cookie with.
Public propertyExpires
Gets or sets the expiration date and time for the cookie.
Public propertyHttpOnly
Gets or sets a value that specifies whether a cookie is accessible by client-side script.
Public propertyName
Gets or sets the name of a cookie.
Public propertyPath
Gets or sets the virtual path to transmit with the current cookie.
Public propertySameSite
Gets or sets the value of the cookie's same site attribute.
Public propertySecure
Gets or sets the value of the cookie's secure attribute.
Public propertyValue
Gets or sets the value of a cookie.
Top
See Also