Navigation
Unreal Engine C++ API Reference > Runtime > WebBrowser
References
Module | WebBrowser |
Header | /Engine/Source/Runtime/WebBrowser/Public/IWebBrowserSchemeHandler.h |
Include | #include "IWebBrowserSchemeHandler.h" |
Syntax
class IWebBrowserSchemeHandler
Remarks
This is the interface that needs to be implemented to handle a request made via a custom scheme. It will be created by implementing an IWebBrowserSchemeHandlerFactory, given to the web browser singleton.
Destructors
Type | Name | Description | |
---|---|---|---|
![]() ![]() |
Functions
Type | Name | Description | |
---|---|---|---|
![]() |
void | Cancel () |
Called if the request should be canceled. |
![]() |
void | GetResponseHeaders
(
IHeaders& OutHeaders |
Retrieves the headers for this request. |
![]() |
bool | ProcessRequest
(
const FString& Verb, |
Process an incoming request. |
![]() |
bool | ReadResponse
(
uint8* OutBytes, |
Retrieves the headers for this request. |
Classes
Type | Name | Description | |
---|---|---|---|
![]() |
IHeaders | An interface for setting response headers emulating a http implementation. |