메소드 | 설명 | |
---|---|---|
Decode ( byte src ) : byte[] |
Decode the given byte[].
|
|
Decode ( string src ) : string |
Decode the given string.
|
|
Encode ( byte src ) : byte[] |
Encode the given byte[].
|
|
Encode ( byte src, int lineFeed ) : byte[] |
Encode the given byte[].
|
|
Encode ( string src ) : string |
Encode the given string.
|
메소드 | 설명 | |
---|---|---|
Base64 ( ) : System | ||
GetBytes ( string str ) : byte[] | ||
GetString ( byte bytes ) : string |
public static Decode ( byte src ) : byte[] | ||
src | byte | /// the base64-encoded data. |
리턴 | byte[] |
public static Decode ( string src ) : string | ||
src | string | the base64-encoded string. |
리턴 | string |
public static Encode ( byte src ) : byte[] | ||
src | byte | the source string. |
리턴 | byte[] |
public static Encode ( byte src, int lineFeed ) : byte[] | ||
src | byte | the source string. |
lineFeed | int | a linefeed is added after linefeed characters;
/// must be dividable by four; 0 means no linefeeds |
리턴 | byte[] |
public static Encode ( string src ) : string | ||
src | string | the source string. |
리턴 | string |