Navigation
Unreal Engine C++ API Reference > Plugins > ElectraBase > Utilities > FURL_RFC3986
References
Module | ElectraBase |
Header | /Engine/Plugins/Media/ElectraUtil/Source/ElectraBase/Public/Utilities/URLParser.h |
Include | #include "Utilities/URLParser.h" |
Source | /Engine/Plugins/Media/ElectraUtil/Source/ElectraBase/Private/URLParser.cpp |
static bool UrlEncode
(
FString & OutResult,
const FString & InUrlToEncode,
const FString & InCharsToKeep
)
Remarks
Encodes characters not permitted in a URL into XX escaped sequences. Appends to the output. Hence in and out must not be the same. A list of characters that should NOT be escaped, even if they normally would, can be passed. These characters must be strictly ASCII characters only. This is useful to prevent '/' path delimiters to be escaped if the string to be encoded represents a path.