Class FailureEventArgs
Provides information about an OnActionFailure event.
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class FailureEventArgs : GridEventBaseArgs
Constructors
FailureEventArgs()
Declaration
public FailureEventArgs()
Properties
Error
Gets the error information associated with an action.
Declaration
public Exception Error { get; }
Property Value
Type | Description |
---|---|
System.Exception | An Exception object that provides details about the error that occurred during an action. |
Remarks
The Error property is typically used in error-handling scenarios to retrieve information about an error that occurred during the execution of an operation or task. When an exception occurs, the .NET runtime automatically creates an Exception object to encapsulate information about the error, such as the error message, the type of exception, and the stack trace. You can use the Error property to retrieve this Exception object and access its properties and methods to obtain more detailed information about the error.