In This Topic
Represents a delegate that retrieves the report in a format compatible with the backend for the specified report identifier.
Syntax
'Declaration
Public Delegate Function GetReportFn( _
ByVal As String _
) As Stream
public delegate Stream GetReportFn(
string
)
Parameters
- reportId
- A System.String value indicating the identifier of the report to retrieve.
Return Value
A
System.IO.Stream object containing the report data.
See Also