Verifies if a buffer is in Base64 format.
| Return | True if the supplied buffer is in Base64 format. Otherwise, False is returned. |
| [in] buffer |
The buffer to be verified. |
| [in] bufferSize |
The size in bytes of the supplied buffer. |
C++ .NET
bool IsBase64Encoding (ref byte[] buffer, int bufferSize);
C#
bool IsBase64Encoding (ref Array buffer, int bufferSize);
VB6
Function IsBase64Encoding (ByRef buffer() As Byte, ByVal bufferSize As Long) As Boolean
VB .NET
Function IsBase64Encoding (ByRef buffer As Array, ByVal bufferSize As Integer) As Boolean
Delphi
function IsBase64Encoding(var buffer: PSafeArray; bufferSize: integer): boolean;