Navigation
API > API/Runtime > API/Runtime/WebBrowser > API/Runtime/WebBrowser/FWebJSResponse
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Success () |
Indicate successful completion without a return value. | WebJSFunction.h | |
void Success
(
T Arg |
Indicate successful completion passing a return value back. | WebJSFunction.h |
Success()
Description
Indicate successful completion without a return value. The remote Promise's then() handler will be executed without arguments.
| Name | Success |
| Type | function |
| Header File | /Engine/Source/Runtime/WebBrowser/Public/WebJSFunction.h |
| Include Path | #include "WebJSFunction.h" |
void Success() const
Success(T)
Description
Indicate successful completion passing a return value back. The remote Promise's then() handler will be executed with the value passed as its single argument.
| Name | Success |
| Type | function |
| Header File | /Engine/Source/Runtime/WebBrowser/Public/WebJSFunction.h |
| Include Path | #include "WebJSFunction.h" |
template<typename T>
void Success
(
T Arg
) const