Override this method and place code that your App will execute in response to the completion of a call to AsymetricalDecrypt().

Namespace:  RedCritterV1
Assembly:  RedCritterV1 (in RedCritterV1.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

      
 C#  Visual Basic 
public virtual void OnAsymetricalDecryptionComplete(
	string requestID,
	string decryptedString,
	bool success
)
Public Overridable Sub OnAsymetricalDecryptionComplete ( _
	requestID As String, _
	decryptedString As String, _
	success As Boolean _
)

Parameters

requestID
String
The RequestID that you supplied in the call to AsymetricalDecrypt() will be passed.
decryptedString
String
The decrypted string if successful.
success
Boolean
Will be true if the decryption was successful.

See Also