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

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

    Parameters

    reportPath
    The full path of the report.
    parameterName
    The name of the parameter.

    Return Value

    See Also