Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

DecryptionFailedEventArgs.Exception Property

Returns an exception that led to the event.

Namespace: DevExpress.XtraRichEdit

Assembly: DevExpress.RichEdit.v20.2.Core.dll

NuGet Package: DevExpress.RichEdit.Core

Declaration

public RichEditDecryptionException Exception { get; }

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.

View Example

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