ApplicationsControllerGetFaultedResult - метод

Get errors occured when downloading app as PlainValidationResult object. Returns 204 (No Content) if data is unavailable: there were no errors or history record is inaccessible by user.

Definition

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

Параметры

id  Guid
History record`s id. Use property ActionHistoryRowID of downloaded package to get it.
cancellationToken  CancellationToken  (Optional)
Token to cancel async task.

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

TaskActionResultPlainValidationResult
Errors occured when downloading app as PlainValidationResult object, or 204 (No Content) if data is unavailable.

См. также