OperationsControllerPostStart - метод

Start operation created earlier (take it in progress), if it hasn't been started already.

Definition

Пространство имён: Tessa.Web.Controllers
Сборка: Tessa.Web (в Tessa.Web.dll) Версия: 4.0.8
C#
[HttpPostAttribute("{id:guid}/start")]
[SessionMethodAttribute(UserAccessLevel.Regular, false)]
[ProducesAttribute("application/json", new string[] { ... })]
[ProducesResponseTypeAttribute(200)]
public Task<ActionResult<bool>> PostStart(
	[FromRouteAttribute] Guid id,
	CancellationToken cancellationToken = default
)

Параметры

id  Guid
Identifier of operation to start.
cancellationToken  CancellationToken  (Optional)
Token to cancel async task.

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

TaskActionResultBoolean
true, if operation is successfully started; false otherwise.

См. также