Delegate ReportErrorOccurredEventHandler
Represents the method that will log and handle the error/exception raised during report processing and rendering. It provides access to an exception details which contains the information about the point of error is raised and error code.
Assembly: BoldReports.Web.dll
Syntax
public delegate void ReportErrorOccurredEventHandler(object sender, ReportErrorOccurredEventArgs e);
Parameters
Type |
Name |
Description |
System.Object |
sender |
The source of the event.
|
ReportErrorOccurredEventArgs |
e |
An ErrorEventArgs that contains the event data.
|
Constructors
ReportErrorOccurredEventHandler(Object, IntPtr)
Declaration
public ReportErrorOccurredEventHandler(object object, IntPtr method)
Parameters
Type |
Name |
Description |
System.Object |
object |
|
System.IntPtr |
method |
|
Methods
BeginInvoke(Object, ReportErrorOccurredEventArgs, AsyncCallback, Object)
Declaration
public virtual IAsyncResult BeginInvoke(object sender, ReportErrorOccurredEventArgs e, AsyncCallback callback, object object)
Parameters
Returns
Type |
Description |
System.IAsyncResult |
|
EndInvoke(IAsyncResult)
Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
Type |
Name |
Description |
System.IAsyncResult |
result |
|
Invoke(Object, ReportErrorOccurredEventArgs)
Declaration
public virtual void Invoke(object sender, ReportErrorOccurredEventArgs e)
Parameters