Class ExceptionRaisedEventArgs
Represents the class that provides data for the ExceptionRaised event that occurs when an unknown exception has been cached while modifying underlying data in the data source.
Namespace: Syncfusion.Grouping
Assembly: Syncfusion.Grouping.Base.dll
Syntax
public sealed class ExceptionRaisedEventArgs : TableEventArgs
Remarks
If necessary, you can re-throw the exception in your event handler.
Constructors
ExceptionRaisedEventArgs(Table, String, Exception)
Initializes a new instance of the ExceptionRaisedEventArgs class.
Declaration
public ExceptionRaisedEventArgs(Table table, string method, Exception exception)
Parameters
Type | Name | Description |
---|---|---|
Table | table | The table object that cached the exception. |
System.String | method | The name of the method that cached the exception. |
System.Exception | exception | The exception. |
Properties
Exception
Gets the value of the exception.
Declaration
[TraceProperty(true)]
public Exception Exception { get; }
Property Value
Type |
---|
System.Exception |
Method
Gets the name of the method that cached the exception.
Declaration
[TraceProperty(true)]
public string Method { get; }
Property Value
Type |
---|
System.String |