Click or drag to resize
DataHelperFromBase64String Method
Converts the string from Base64 string to the byte array.

Namespace: CMS.Helpers
Assembly: CMS.Helpers (in CMS.Helpers.dll) Version: 8.2.23
Syntax
C#
public static byte[] FromBase64String(
	string value
)

Parameters

value
Type: SystemString
Value to convert

Return Value

Type: Byte
Remarks
Processes the string by blocks (Convert.FromBase64String causes OutOfMemoryException)
See Also