Navigation
API > API/Runtime > API/Runtime/WebBrowser
| Name | FWebBrowserCookie |
| Type | struct |
| Header File | /Engine/Source/Runtime/WebBrowser/Public/IWebBrowserCookieManager.h |
| Include Path | #include "IWebBrowserCookieManager.h" |
Syntax
struct FWebBrowserCookie
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| bHasExpires | bool | If true the cookie will expire at the specified Expires datetime. | IWebBrowserCookieManager.h | |
| bHttpOnly | bool | If true the cookie will only be sent for HTTP requests. | IWebBrowserCookieManager.h | |
| bSecure | bool | If true the cookie will only be sent for HTTPS requests. | IWebBrowserCookieManager.h | |
| Domain | FString | If is empty a host cookie will be created instead of a domain cookie. | IWebBrowserCookieManager.h | |
| Expires | FDateTime | The cookie expiration date is only valid if bHasExpires is true. | IWebBrowserCookieManager.h | |
| Name | FString | The cookie name. | IWebBrowserCookieManager.h | |
| Path | FString | If is non-empty only URLs at or below the path will get the cookie value. | IWebBrowserCookieManager.h | |
| Value | FString | The cookie value. | IWebBrowserCookieManager.h |