CryptographyHelperEncode Method  | 
 
            Function which encode a given string to 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 Encode(
	string originalValue,
	string privateKey
)
Public Shared Function Encode ( 
	originalValue As String,
	privateKey As String
) As String
Parameters
- originalValue
 - Type: SystemString
The string to encode - privateKey
 - Type: SystemString
The private key to use 
Return Value
Type: 
StringA Base64 encoded string
RemarksThe privateKey parameter is ignored in the current implementation
See Also