| CryptographyHelperDecode Method  | 
            Function which decodes or decrypts a given string based on a private key
            
 
Namespace: WorkflowGen.My.SecurityAssembly: WorkflowGen.My (in WorkflowGen.My.dll) Version: 2.4.0.0 (2.4.0.0)
Syntaxpublic static string Decode(
	string encryptedValue,
	string privateKey
)
Public Shared Function Decode ( 
	encryptedValue As String,
	privateKey As String
) As String
Parameters
- encryptedValue
 - Type: SystemString
The string to decode or decrypt - privateKey
 - Type: SystemString
The private key to use 
Return Value
Type: 
StringA decoded string if the private key is not provided (null or empty). Otherwise a decrypted string.
See Also