Web API Edition | ComponentOne
C1.Web.Api.Report Namespace / ReportController Class / GetReportSupportedFormats Method
The full path of the report.

In This Topic
    GetReportSupportedFormats Method
    In This Topic
    Gets the export formats supported by the specified report.
    Syntax
    'Declaration
     
    
    <HttpGetAttribute()>
    <PathRouteAttribute("{*reportPath}$report/supportedformats")>
    Public Overridable Function GetReportSupportedFormats( _
       ByVal reportPath As String _
    ) As IHttpActionResult
    [HttpGet()]
    [PathRoute("{*reportPath}$report/supportedformats")]
    public virtual IHttpActionResult GetReportSupportedFormats( 
       string reportPath
    )

    Parameters

    reportPath
    The full path of the report.

    Return Value

    An System.Web.Http.IHttpActionResult type object with content of collection of C1.Web.Api.Document.Models.ExportDescription type object.
    See Also