DecryptionFailedEventArgs.Exception Property
Returns an exception that led to the event.
Namespace: DevExpress.XtraRichEdit
Assembly: DevExpress.RichEdit.v24.1.Core.dll
NuGet Packages: DevExpress.RichEdit.Core, DevExpress.Win.Navigation
Declaration
Property Value
Type | Description |
---|---|
RichEditDecryptionException | One of the RichEditDecryptionException values indicating the decryption exception. |
Remarks
The code sample below shows how to handle the DecryptionFailed event to show an exception message.
private static void Server_DecryptionFailed(object sender, DecryptionFailedEventArgs e)
{
Console.WriteLine(e.Exception.Message.ToString()+" Press any key to close...");
Console.ReadKey(true);
}
See Also