Encoding UtilsFrom Base 64 Method
This method is used to decode the specified Base 64 encoded string using the iso-8859-1 encoding
(Western European (ISO), Windows code page 1252) which works well for 8-bit binary data.
Definition
Namespace: EWSoftware.PDI
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
The decoded data as a string. This may or may not be a human-readable string.
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
C#
public static string? FromBase64(
this string? decode
)VB
<ExtensionAttribute>
Public Shared Function FromBase64 (
decode As String
) As StringC++
public:
[ExtensionAttribute]
static String^ FromBase64(
String^ decode
)F#
[<ExtensionAttribute>]
static member FromBase64 :
decode : string -> string Parameters
- decode String
- The string to decode
Return Value
StringThe decoded data as a string. This may or may not be a human-readable string.