Navigation
API > API/Runtime > API/Runtime/WebBrowser > API/Runtime/WebBrowser/IWebBrowserSchemeHandler
References
| Module | WebBrowser |
| Header | /Engine/Source/Runtime/WebBrowser/Public/IWebBrowserSchemeHandler.h |
| Include | #include "IWebBrowserSchemeHandler.h" |
bool ProcessRequest
(
const FString & Verb,
const FString & Url,
const FSimpleDelegate & OnHeadersReady
)
Remarks
Process an incoming request. You should return true if the request has been accepted and will be processed, otherwise false to cancel this request.
Parameters
| Name | Description |
|---|---|
| Verb | This is the verb used for the request (GET, PUT, POST, etc). |
| Url | This is the full url for the request being made. |
| OnHeadersReady | You must execute this delegate once the response headers are ready to be retrieved with GetResponseHeaders. You may execute it during this call to state headers are available now. |