Skip to main content
All docs
V26.1
  • DecryptionFailedEventArgs.Exception Property

    Returns an exception that led to the event.

    Namespace: DevExpress.XtraRichEdit

    Assembly: DevExpress.RichEdit.v26.1.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