CardsControllerPostRepair - метод
Repair card's structure.
Пространство имён: Tessa.Web.ControllersСборка: Tessa.Web (в Tessa.Web.dll) Версия: 4.0.4
[HttpPostAttribute("repair")]
[SessionMethodAttribute(UserAccessLevel.Regular)]
[TypedJsonBodyAttribute]
[ConsumesAttribute("application/json", new string[] { ... })]
[ProducesAttribute("application/json", new string[] { ... })]
[ProducesResponseTypeAttribute(200)]
public Task<ActionResult<CardRepairResponse>> PostRepair(
CardRepairRequest request,
CancellationToken cancellationToken = default
)
<HttpPostAttribute("repair")>
<SessionMethodAttribute(UserAccessLevel.Regular)>
<TypedJsonBodyAttribute>
<ConsumesAttribute("application/json", New String() { ... })>
<ProducesAttribute("application/json", New String() { ... })>
<ProducesResponseTypeAttribute(200)>
Public Function PostRepair (
request As CardRepairRequest,
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of ActionResult(Of CardRepairResponse))
public:
[HttpPostAttribute(L"repair")]
[SessionMethodAttribute(UserAccessLevel::Regular)]
[TypedJsonBodyAttribute]
[ConsumesAttribute(L"application/json", __gc new array<String^>^ { ... })]
[ProducesAttribute(L"application/json", __gc new array<String^>^ { ... })]
[ProducesResponseTypeAttribute(200)]
Task<ActionResult<CardRepairResponse^>^>^ PostRepair(
CardRepairRequest^ request,
CancellationToken cancellationToken = CancellationToken()
)
[<HttpPostAttribute("repair")>]
[<SessionMethodAttribute(UserAccessLevel.Regular)>]
[<TypedJsonBodyAttribute>]
[<ConsumesAttribute("application/json", new string[] { ... })>]
[<ProducesAttribute("application/json", new string[] { ... })>]
[<ProducesResponseTypeAttribute(200)>]
member PostRepair :
request : CardRepairRequest *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<ActionResult<CardRepairResponse>>
- request CardRepairRequest
- Request to repair the card's structure.
- cancellationToken CancellationToken (Optional)
- Token to cancel async task.
TaskActionResultCardRepairResponseResponse to the request.