IWebBrowserSchemeHandler::ProcessRequest

Process an incoming request.

Windows
MacOS
Linux

References

Module

WebBrowser

Header

/Engine/Source/Runtime/WebBrowser/Public/IWebBrowserSchemeHandler.h

Include

#include "IWebBrowserSchemeHandler.h"

Syntax

bool ProcessRequest
(
    const FString & Verb,
    const FString & Url,
    const FSimpleDelegate & OnHeadersReady
)

Remarks

Process an incoming request.

Returns

You should return true if the request has been accepted and will be processed, otherwise false to cancel this request.

Parameters

Parameter

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.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss