Navigation
Unreal Engine C++ API Reference > Runtime > WebBrowser
References
Module | WebBrowser |
Header | /Engine/Source/Runtime/WebBrowser/Public/IWebBrowserCookieManager.h |
Include | #include "IWebBrowserCookieManager.h" |
Syntax
struct FWebBrowserCookie
Remarks
Copyright Epic Games, Inc. All Rights Reserved.
Variables
Type | Name | Description | |
---|---|---|---|
![]() |
bool | bHasExpires | If true the cookie will expire at the specified Expires datetime. |
![]() |
bool | bHttpOnly | If true the cookie will only be sent for HTTP requests. |
![]() |
bool | bSecure | If true the cookie will only be sent for HTTPS requests. |
![]() |
FString | Domain | If is empty a host cookie will be created instead of a domain cookie. |
![]() |
FDateTime | Expires | The cookie expiration date is only valid if bHasExpires is true. |
![]() |
FString | Name | The cookie name. |
![]() |
FString | Path | If is non-empty only URLs at or below the path will get the cookie value. |
![]() |
FString | Value | The cookie value. |