EncodingUtilsFromBase64 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.
Namespace: EWSoftware.PDIAssembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2023.1.2.0
public static string FromBase64(
this string decode
)
<ExtensionAttribute>
Public Shared Function FromBase64 (
decode As String
) As String
public:
[ExtensionAttribute]
static String^ FromBase64(
String^ decode
)
[<ExtensionAttribute>]
static member FromBase64 :
decode : string -> string
- decode String
- The string to decode
StringThe decoded data as a string. This may or may not be a human-readable string.In Visual Basic and C#, you can call this method as an instance method on any object of type
String. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).