Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FBase64
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static uint32 GetDecodedDataSize
(
const FString& Source |
Determine the decoded data size for the incoming base64 encoded string | Misc/Base64.h | |
static uint32 GetDecodedDataSize
(
const CharType* Source, |
Determine the decoded data size for the incoming base64 encoded string | Misc/Base64.h |
GetDecodedDataSize(const FString &)
Description
Determine the decoded data size for the incoming base64 encoded string
| Name | GetDecodedDataSize |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/Base64.h |
| Include Path | #include "Misc/Base64.h" |
| Source | /Engine/Source/Runtime/Core/Private/Misc/Base64.cpp |
static uint32 GetDecodedDataSize
(
const FString & Source
)
The size in bytes of the decoded data
Parameters
| Name | Remarks |
|---|---|
| Source | The Base64 encoded string |
GetDecodedDataSize(const CharType *, uint32)
Description
Determine the decoded data size for the incoming base64 encoded string
| Name | GetDecodedDataSize |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/Base64.h |
| Include Path | #include "Misc/Base64.h" |
| Source | /Engine/Source/Runtime/Core/Private/Misc/Base64.cpp |
template<typename CharType>
static uint32 GetDecodedDataSize
(
const CharType * Source,
uint32 Length
)
The size in bytes of the decoded data
Parameters
| Name | Remarks |
|---|---|
| Source | The Base64 encoded string |
| Length | Length of the Base64 encoded string |