struct DualEngineCookie
Important
The DualEngine API is part of a Limited Access Feature (see LimitedAccessFeatures class). For more information or to request an unlock token, contact Microsoft Support.
Represents the constituent parts of a cookie.
Summary
Members | Descriptions |
---|---|
domain | The cookie domain. |
expiry | Expiry time for persistent cookies. |
flags | Flags for additional cookie details. |
forceSync | Indicates that when setting the cookie whether to wait for a process of the appropriate integrity level to be created and ready to receive the cookie before returning. |
integrity | The Integrity Level of the cookie. |
name | The name of the cookie. |
path | The cookie path. May be NULL. |
value | The cookie value. |
Members
domain
The cookie domain.
public LPCWSTR domain
expiry
Expiry time for persistent cookies.
public FILETIME expiry
Should only be used if INTERNET_COOKIE_IS_SESSION is not set in flags, or if this is a delete (an expiry set to a past date).
flags
Flags for additional cookie details.
public DWORD flags
See INTERNET_COOKIE2 for available flags.
forceSync
Indicates that when setting the cookie whether to wait for a process of the appropriate integrity level to be created and ready to receive the cookie before returning.
public BOOL forceSync
This only affects persistent cookies when protected mode is enabled.
integrity
The Integrity Level of the cookie.
public DualEngineCookieIntegrity integrity
name
The name of the cookie.
public LPCWSTR name
path
The cookie path. May be NULL.
public LPCWSTR path
value
The cookie value.
public LPCWSTR value