![]() |
UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
|
#include <IWebBrowserSchemeHandler.h>
Public Member Functions | |
| virtual void | SetMimeType (const TCHAR *MimeType)=0 |
| virtual void | SetStatusCode (int32 StatusCode)=0 |
| virtual void | SetContentLength (int32 ContentLength)=0 |
| virtual void | SetRedirect (const TCHAR *Url)=0 |
| virtual void | SetHeader (const TCHAR *Key, const TCHAR *Value)=0 |
An interface for setting response headers emulating a http implementation.
|
pure virtual |
Sets the content length for the response.
| ContentLength | The size of the response content in bytes. |
|
pure virtual |
Sets a header for the response.
| Key | The header key. |
| Value | The header value. |
Sets the mime type for the response.
| MimeType | The Mime Type. |
Sets a redirect url for the response. Other calls will be ignored if this is used.
| Url | The url to redirect to. |
Sets the status code for the response.
| StatusCode | The status code. |