mobileFX WebKitX CEF3 ActiveX 4.x
WebKitXCEF3Lib ActiveX Control / WebCookie UDT
WebCookie UDT
Description

Structure is used to represent a Cookie.

UDT Members
MemberTypeDescription
DomainString

A string representing the domain the cookie belongs to (e.g. "www.google.com", "example.com").

ExpiresBoolean

If True indicates the Cookie has expiration date.

ExpiryDateUTCVariant

Cookie expiration date and time in UTC. This must be VT_DATE type.

HttpOnlyBoolean

A boolean, true if the cookie is marked as HttpOnly (i.e. the cookie is inaccessible to client-side scripts), or false otherwise.

NameString

A string representing the name of the cookie.

PathString

A string representing the path of the cookie.

SecureBoolean

A boolean, true if the cookie is marked as secure (i.e. its scope is limited to secure channels, typically HTTPS), or false otherwise.

ValueString

A string representing the value of the cookie.

Remarks

A Cookie is a small piece of data sent from a website and stored on the user's computer by the user's web browser while the user is browsing. Cookies were designed to be a reliable mechanism for websites to remember stateful information or to record the user's browsing activity.

See Also