Class ExceptionRevokedEventArgs
Issued when unhandled exception was revoked.
public sealed record ExceptionRevokedEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<ExceptionRevokedEventArgs>
- Inheritance
-
EventArgsExceptionRevokedEventArgs
- Implements
-
IEquatable<EventArgs>
- Inherited Members
-
EventArgs.ToString()EventArgs.GetHashCode()EventArgs.Equals(EventArgs)EventArgs.<Clone>$()EventArgs.BiDiEventArgs.AdditionalDataEventArgs.AdditionalMessageData
Constructors
ExceptionRevokedEventArgs(string, long)
Issued when unhandled exception was revoked.
public ExceptionRevokedEventArgs(string Reason, long ExceptionId)
Parameters
ReasonstringReason describing why exception was revoked.
ExceptionIdlongThe id of revoked exception, as reported in exceptionThrown.
Properties
ExceptionId
The id of revoked exception, as reported in exceptionThrown.
public long ExceptionId { get; init; }
Property Value
Reason
Reason describing why exception was revoked.
public string Reason { get; init; }