The source string to decode.





In This Topic

Decode64String Method (GdPictureImaging)

In This Topic
Returns a decoded string using the Base64 encoding algorithm from the given source string.
Syntax
'Declaration
 
Public Function Decode64String( _
   ByVal StringToDecode As String _
) As String
public string Decode64String( 
   string StringToDecode
)
public function Decode64String( 
    StringToDecode: String
): String; 
public function Decode64String( 
   StringToDecode : String
) : String;
public: string* Decode64String( 
   string* StringToDecode
) 
public:
String^ Decode64String( 
   String^ StringToDecode
) 

Parameters

StringToDecode
The source string to decode.

Return Value

The resulting decoded string.
Remarks
You can regularly apply the GdPictureImaging.GetStat method to determine if this method has been successful.

This method requires the Image Documents component to run.

See Also