Encodes specified data with bas64 encoding.
| C# | Visual Basic | Visual C++ |
Public Shared Function Base64EncodeEx ( _ data As Byte(), _ base64Chars As Char(), _ padd As Boolean _ ) As Byte()
public: static array<unsigned char>^ Base64EncodeEx( array<unsigned char>^ data, array<wchar_t>^ base64Chars, bool padd )
- data (array< Byte >[]()[])
- Data to to encode.
- base64Chars (array< Char >[]()[])
- Custom base64 chars (64 chars) or null if default chars used.
- padd (Boolean)
- Padd missing block chars. Normal base64 must be 4 bytes blocks, if not 4 bytes in block, missing bytes must be padded with '='. Modified base64 just skips missing bytes.
[Missing <returns> documentation for "M:LumiSoft.Net.Core.Base64EncodeEx(System.Byte[],System.Char[],System.Boolean)"]