'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
An Microsoft.AspNetCore.Mvc.IActionResult type object with content of C1.Web.Api.Report.Models.Parameter type object.