Description
-
Decodes text encoded with Base64 encoding.
Return Type
-
A String value. Holds text that is decoded.
Syntax
-
object.Base64Text InText
The Base64Text Method syntax has these parts:
object |
An expression evaluating to an object
of type Decoder. |
InText |
Required. A String value. Holds text that should
be decoded. |
Remarks
-
Base64Text method will decode text specified in
InText parameter and return it as string
variable. BASE64
decoding will be used, no matter if InText is encoded using
same algorithm or not. If InText is invalid (for example
different encoding was used to create it), unexpected results may occur, but
most probably zero-len string will be returned.
|