CardsControllerPostGet - метод
Get card with specified attributes. Card should be present in database, or it should be virtual.
Пространство имён: Tessa.Web.ControllersСборка: Tessa.Web (в Tessa.Web.dll) Версия: 4.0.4
[HttpPostAttribute("get")]
[SessionMethodAttribute(UserAccessLevel.Regular)]
[TypedJsonBodyAttribute]
[ConsumesAttribute("application/json", new string[] { ... })]
[ProducesAttribute("application/json", new string[] { ... })]
[ProducesResponseTypeAttribute(200)]
public Task<ActionResult<CardGetResponse>> PostGet(
[FromBodyAttribute] CardGetRequest request,
CancellationToken cancellationToken = default
)
<HttpPostAttribute("get")>
<SessionMethodAttribute(UserAccessLevel.Regular)>
<TypedJsonBodyAttribute>
<ConsumesAttribute("application/json", New String() { ... })>
<ProducesAttribute("application/json", New String() { ... })>
<ProducesResponseTypeAttribute(200)>
Public Function PostGet (
<FromBodyAttribute> request As CardGetRequest,
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of ActionResult(Of CardGetResponse))
public:
[HttpPostAttribute(L"get")]
[SessionMethodAttribute(UserAccessLevel::Regular)]
[TypedJsonBodyAttribute]
[ConsumesAttribute(L"application/json", __gc new array<String^>^ { ... })]
[ProducesAttribute(L"application/json", __gc new array<String^>^ { ... })]
[ProducesResponseTypeAttribute(200)]
Task<ActionResult<CardGetResponse^>^>^ PostGet(
[FromBodyAttribute] CardGetRequest^ request,
CancellationToken cancellationToken = CancellationToken()
)
[<HttpPostAttribute("get")>]
[<SessionMethodAttribute(UserAccessLevel.Regular)>]
[<TypedJsonBodyAttribute>]
[<ConsumesAttribute("application/json", new string[] { ... })>]
[<ProducesAttribute("application/json", new string[] { ... })>]
[<ProducesResponseTypeAttribute(200)>]
member PostGet :
[<FromBodyAttribute>] request : CardGetRequest *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<ActionResult<CardGetResponse>>
- request CardGetRequest
- Request to get the card.
- cancellationToken CancellationToken (Optional)
- Token to cancel async task.
TaskActionResultCardGetResponseResponse to the request.