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

In This Topic
    GetReportParameters Method
    In This Topic
    Gets the parameters defined in the specified report.
    Syntax
    'Declaration
     
    
    <HttpGetAttribute()>
    <PathRouteAttribute("{*reportPath}$report/parameters")>
    Public Overridable Function GetReportParameters( _
       ByVal reportPath As String _
    ) As IActionResult
    [HttpGet()]
    [PathRoute("{*reportPath}$report/parameters")]
    public virtual IActionResult GetReportParameters( 
       string reportPath
    )

    Parameters

    reportPath
    The full path of the report.

    Return Value

    An Microsoft.AspNetCore.Mvc.IActionResult type object with content of collection of C1.Web.Api.Report.Models.Parameter type object.
    See Also