Property | Type | Description | |
---|---|---|---|
DecodeFrom64 | string | ||
EncodeTo64 |
Method | Description | |
---|---|---|
Base64String ( ) : System |
Default constructor
|
|
Base64String ( |
Constructor that copies another Base64String value
|
|
Base64String ( string plainString ) : System |
Constructor that takes a plain string and encodes it.
|
|
Base64String ( string plainString, bool encode ) : System |
Constructor that takes a string and optionally encodes it.
|
|
ToString ( ) : string |
Override to return the encoded string.
|
|
prefix ( string plainText ) : |
Insert the string in front of this Base64 encoded string
|
Method | Description | |
---|---|---|
DecodeFrom64 ( string encodedData ) : string |
The method to Decode your Base64 strings.
|
|
EncodeTo64 ( string toEncode ) : |
The method create a Base64 encoded string from a normal string.
|
public Base64String ( |
||
encodedString | ||
return | System |
public Base64String ( string plainString ) : System | ||
plainString | string | Plain text string to be encoded. |
return | System |
public Base64String ( string plainString, bool encode ) : System | ||
plainString | string | The string to optionally encode. |
encode | bool | Whether or not the string needs to be encoded. /// If false we assume the string is already Base64 encoded. |
return | System |
public prefix ( string plainText ) : |
||
plainText | string | The plain text string to insert then re-encode the result. |
return |