Navigation
API > API/Plugins > API/Plugins/HttpBlueprint > API/Plugins/HttpBlueprint/UHttpBlueprintFunctionLibrary
Description
Removes a header from the HeaderObject
@Param HeaderObject: The structure that contains all of the headers @Param HeaderToRemove: The Key of the header to remove @Return Whether or not the operation was successful. A value of false most likely means the Key did not exist on the HeaderObject
| Name | RemoveHeader |
| Type | function |
| Header File | /Engine/Plugins/Web/HttpBlueprint/Source/HttpBlueprint/Public/HttpBlueprintFunctionLibrary.h |
| Include Path | #include "HttpBlueprintFunctionLibrary.h" |
| Source | /Engine/Plugins/Web/HttpBlueprint/Source/HttpBlueprint/Private/HttpBlueprintFunctionLibrary.cpp |
UFUNCTION (BlueprintCallable, Category="Http")
static bool RemoveHeader
(
UPARAM FHttpHeader & HeaderObject,
FString HeaderToRemove
)