[This is preliminary documentation and is subject to change.]

Converts a string to its base64 equivalent.

Namespace:  OfficeClip.Utils
Assembly:  OfficeClip.Utils (in OfficeClip.Utils)
Version: 8.1.1.0

Syntax

C#
public static string ToBase64String(
	string str,
	bool isUrlSafe
)
Visual Basic (Declaration)
Public Shared Function ToBase64String ( _
	str As String, _
	isUrlSafe As Boolean _
) As String
Visual C++
public:
static String^ ToBase64String(
	String^ str, 
	bool isUrlSafe
)

Parameters

str
Type: System..::.String
the input string to be converted.
isUrlSafe
Type: System..::.Boolean
Determines if the url safe nature of the string is desired.

Return Value

the base64 converted string.

See Also