Web API Core | ComponentOne
C1.Web.Api.Report Namespace / ReportController Class / GetReportSupportedFormatByName Method
The full path of the report.
The name of the export format.

In This Topic
    GetReportSupportedFormatByName Method
    In This Topic
    Gets the export format with specified name which is supported by the specified report.
    Syntax
    'Declaration
     
    
    <HttpGetAttribute()>
    <PathRouteAttribute("{*reportPath}$report/supportedformats/{formatName}")>
    Public Overridable Function GetReportSupportedFormatByName( _
       ByVal reportPath As String, _
       ByVal formatName As String _
    ) As IActionResult
    [HttpGet()]
    [PathRoute("{*reportPath}$report/supportedformats/{formatName}")]
    public virtual IActionResult GetReportSupportedFormatByName( 
       string reportPath,
       string formatName
    )

    Parameters

    reportPath
    The full path of the report.
    formatName
    The name of the export format.

    Return Value

    See Also