The source string to encode.





In This Topic

Encode64String Method (GdPictureImaging)

In This Topic
Returns an encoded string using the Base64 encoding algorithm from the given source string.
Syntax
'Declaration
 
Public Function Encode64String( _
   ByVal StringToEncode As String _
) As String
public string Encode64String( 
   string StringToEncode
)
public function Encode64String( 
    StringToEncode: String
): String; 
public function Encode64String( 
   StringToEncode : String
) : String;
public: string* Encode64String( 
   string* StringToEncode
) 
public:
String^ Encode64String( 
   String^ StringToEncode
) 

Parameters

StringToEncode
The source string to encode.

Return Value

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

This method requires the Image Documents component to run.

See Also