ViewsControllerPostGetData - метод

Query the view and get its results. View has to be accessible for current user.

Definition

Пространство имён: Tessa.Web.Controllers
Сборка: Tessa.Web (в Tessa.Web.dll) Версия: 4.0.4
C#
[HttpPostAttribute("get-data")]
[SessionMethodAttribute(UserAccessLevel.Regular)]
[TypedJsonBodyAttribute]
[ConsumesAttribute("application/json", new string[] { ... })]
[ProducesAttribute("application/json", new string[] { ... })]
[ProducesResponseTypeAttribute(200)]
[ProducesResponseTypeAttribute(204)]
public Task<ActionResult<PlainTessaViewResult>> PostGetData(
	[FromBodyAttribute] PlainTessaViewRequest request,
	CancellationToken cancellationToken = default
)

Параметры

request  PlainTessaViewRequest
Request to query the view.
cancellationToken  CancellationToken  (Optional)
Token to cancel async task.

Возвращаемое значение

TaskActionResultPlainTessaViewResult
Results of querying the view.

См. также