A utility function used for encoding a Byte array to a base64 encoded string, according to RFC standards.
A utility function used for encoding a Byte array to a base64 encoded string, according to RFC standards.
public string Base64Encode(byte[]);
Base64 Encodes a string of text according to RFC standards.
public string Base64Encode(string);
Base64 Encodes a string of text according to RFC standards, using the Framework encoding set by encodingType.
public string Base64Encode(string,Encoding);