[]
Process the POST request.
[HttpPost]
[Route("api/excel/{*pathAndCmd}")]
public virtual IActionResult PostOperation(string pathAndCmd, IDictionary<string, string[]> parameters)
<HttpPost>
<Route("api/excel/{*pathAndCmd}")>
Public Overridable Function PostOperation(pathAndCmd As String, parameters As IDictionary(Of String, String())) As IActionResult
| Type | Name | Description |
|---|---|---|
| string | pathAndCmd | The text for path and command. |
| IDictionary<string, string[]> | parameters | The request parameters. |
| Type | Description |
|---|---|
| IActionResult | The response result. |