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

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

    Parameters

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

    Return Value

    See Also