Navigation
API > API/Runtime > API/Runtime/ExternalRpcRegistry > API/Runtime/ExternalRpcRegistry/UExternalRpcRegistrationComponen- > API/Runtime/ExternalRpcRegistry/UExternalRpcRegistrationComponen-/RegisterHttpCall-
References
| Module | ExternalRpcRegistry |
| Header | /Engine/Source/Runtime/ExternalRPCRegistry/Public/ExternalRpcRegistrationComponent.h |
| Include | #include "ExternalRpcRegistrationComponent.h" |
| Source | /Engine/Source/Runtime/ExternalRPCRegistry/Private/ExternalRpcRegistrationComponent.cpp |
void RegisterHttpCallback
(
FExternalRouteInfo InRouteInfo,
const FHttpRequestHandler & Handler,
bool bOverrideIfBound
)
Remarks
Hooks up a given delegate to the assigned route for external access. Use if you already have an FExternalRouteInfo object.
Parameters
| Name | Description |
|---|---|
| InRouteInfo | A fully initialized FExternalRouteInfo object that describes the overall endpoint. |
| Handler | The function delegate to call when this route is accessed. |
| bOverrideIfBound | Whether or not this registry should override any previously registered route. |