Atom.NET documentation

Utils.Base64Encode Method (Byte[], Int32, Int32)

Base64-encodes the given byte array from the given offset to "len" number of bytes.

[Visual Basic]
Overloads Public Shared Function Base64Encode( _
   ByVal array As Byte(), _
   ByVal offset As Integer, _
   ByVal length As Integer _
) As String
[C#]
public static string Base64Encode(
   byte[] array,
   int offset,
   int length
);

Parameters

array
The byte array to encode.
offset
The offset from which the encoding starts.
length
The number of bytes from the offset to encode.

Return Value

A base64-encoded string.

See Also

Utils Class | Atom.Utils Namespace | Utils.Base64Encode Overload List