Web API Core | ComponentOne
C1.Web.Api.Excel Namespace / ExcelController Class / GetOperation Method
The text for path and command.
The request parameters.

In This Topic
    GetOperation Method
    In This Topic
    Process the GET request.
    Syntax
    'Declaration
     
    
    <HttpGetAttribute()>
    <RouteAttribute("api/excel/{*pathAndCmd}")>
    Public Overridable Function GetOperation( _
       ByVal pathAndCmd As String, _
       ByVal parameters As IDictionary(Of String,String()) _
    ) As IActionResult
    [HttpGet()]
    [Route("api/excel/{*pathAndCmd}")]
    public virtual IActionResult GetOperation( 
       string pathAndCmd,
       IDictionary<string,string[]> parameters
    )

    Parameters

    pathAndCmd
    The text for path and command.
    parameters
    The request parameters.

    Return Value

    The response result.
    See Also