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.

Definition

Namespace: EWSoftware.PDI
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2023.1.2.0
public static string FromBase64(
	this string decode
)

Parameters

decode  String
The string to decode

Return Value

String
The decoded data as a string. This may or may not be a human-readable string.

Usage Note

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).

See Also