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

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

Syntax

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

Parameters

requestID
String
The RequestID that you supplied in the call to AsymetricalEncrypt() will be passed.
encryptedString
String
The encrypted string if successful.
success
Boolean
Will be true if the encryption was successful.

See Also