ReportErrorEventHandler Delegate

Represents the method that will handle a ReportError event.

Namespace: Microsoft.Reporting.WebForms
Assembly: Microsoft.ReportViewer.WebForms (in microsoft.reportviewer.webforms.dll)

Syntax

'Declaration
Public Delegate Sub ReportErrorEventHandler ( _
    sender As Object, _
    e As ReportErrorEventArgs _
)
'Usage
Dim instance As New ReportErrorEventHandler(AddressOf HandlerMethod)
public delegate void ReportErrorEventHandler (
    Object sender,
    ReportErrorEventArgs e
)
public delegate void ReportErrorEventHandler (
    Object^ sender, 
    ReportErrorEventArgs^ e
)
/** @delegate */
public delegate void ReportErrorEventHandler (
    Object sender, 
    ReportErrorEventArgs e
)
JScript supports the use of delegates, but not the declaration of new ones.

Parameters

  • sender
    The object that raised the event.

Remarks

For more information about handling events, see Consuming Events.

See Also

Reference

Microsoft.Reporting.WebForms Namespace