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

Extracts a string from its base64 equivalent.

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

Syntax

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

Parameters

str
Type: System..::.String
The base64 string.
isUrlSafe
Type: System..::.Boolean
Determines if the encoded string is url safe

Return Value

The extracted string.

See Also