public static string Encode(
byte[] bytes,
int offset,
int length,
Base64FormattingOptions options = Base64FormattingOptions.None
)Public Shared Function Encode (
bytes As Byte(),
offset As Integer,
length As Integer,
Optional options As Base64FormattingOptions = Base64FormattingOptions.None
) As Stringpublic:
static String^ Encode(
array<unsigned char>^ bytes,
int offset,
int length,
Base64FormattingOptions options = Base64FormattingOptions::None
)static member Encode :
bytes : byte[] *
offset : int *
length : int *
?options : Base64FormattingOptions
(* Defaults:
let _options = defaultArg options Base64FormattingOptions.None
*)
-> string | ArgumentNullException | bytes is null. |
| ArgumentOutOfRangeException | offset or length are negative values. - oder - offset plus length is greater than the length of bytes. |
| ArgumentException | options is not a defined Base64FormattingOptions value. |