CryptographyHelperDecode Method  | 
 
            Function which decode a Base64 string
            
 
    Namespace: 
   WorkflowGen.My.Security
    Assembly:
   WorkflowGen.My (in WorkflowGen.My.dll) Version: 4.7.2.0 (4.7.2.0)
Syntaxpublic static string Decode(
	string encodedValue,
	string privateKey
)
Public Shared Function Decode ( 
	encodedValue As String,
	privateKey As String
) As String
Parameters
- encodedValue
 - Type: SystemString
The Base64 string to decode - privateKey
 - Type: SystemString
The private key to use 
Return Value
Type: 
StringA decoded string
RemarksThe privateKey parameter is ignored in the current implementation
See Also