'Declaration
<HttpGetAttribute()> <PathRouteAttribute("{*reportPath}$report/export")> Public Overridable Function ExportReport_Get( _ ByVal reportPath As String, _ ByVal exportOptions As IDictionary(Of String,String), _ Optional ByVal exportFileName As String, _ Optional ByVal parameters As IDictionary(Of String,String()), _ Optional ByVal pageSettings As PageSettings _ ) As IHttpActionResult
[HttpGet()] [PathRoute("{*reportPath}$report/export")] public virtual IHttpActionResult ExportReport_Get( string reportPath, IDictionary<string,string> exportOptions, string exportFileName, IDictionary<string,string[]> parameters, PageSettings pageSettings )
Parameters
- reportPath
- The full path of the report.
- exportOptions
- The export options.
- exportFileName
- The optional exported file name.
- parameters
- The optional parameters for rendering.
- pageSettings
- The optional page settings for rendering.
Return Value
An System.Web.Http.IHttpActionResult type object with content of exported file stream.