CardsControllerPostStore - метод
Save card
Card with specified attributes. If card has
StoreMode
as
Insert, then the card is being created as the new one, otherwise existent card is modified.
Пространство имён: Tessa.Web.ControllersСборка: Tessa.Web (в Tessa.Web.dll) Версия: 4.0.4
[HttpPostAttribute("store")]
[SessionMethodAttribute(UserAccessLevel.Regular)]
[TypedJsonBodyAttribute]
[ConsumesAttribute("application/json", new string[] { ... })]
[ProducesAttribute("application/json", new string[] { ... })]
[ProducesResponseTypeAttribute(200)]
public Task<ActionResult<CardStoreResponse>> PostStore(
[FromBodyAttribute] CardStoreRequest request,
CancellationToken cancellationToken = default
)
<HttpPostAttribute("store")>
<SessionMethodAttribute(UserAccessLevel.Regular)>
<TypedJsonBodyAttribute>
<ConsumesAttribute("application/json", New String() { ... })>
<ProducesAttribute("application/json", New String() { ... })>
<ProducesResponseTypeAttribute(200)>
Public Function PostStore (
<FromBodyAttribute> request As CardStoreRequest,
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of ActionResult(Of CardStoreResponse))
public:
[HttpPostAttribute(L"store")]
[SessionMethodAttribute(UserAccessLevel::Regular)]
[TypedJsonBodyAttribute]
[ConsumesAttribute(L"application/json", __gc new array<String^>^ { ... })]
[ProducesAttribute(L"application/json", __gc new array<String^>^ { ... })]
[ProducesResponseTypeAttribute(200)]
Task<ActionResult<CardStoreResponse^>^>^ PostStore(
[FromBodyAttribute] CardStoreRequest^ request,
CancellationToken cancellationToken = CancellationToken()
)
[<HttpPostAttribute("store")>]
[<SessionMethodAttribute(UserAccessLevel.Regular)>]
[<TypedJsonBodyAttribute>]
[<ConsumesAttribute("application/json", new string[] { ... })>]
[<ProducesAttribute("application/json", new string[] { ... })>]
[<ProducesResponseTypeAttribute(200)>]
member PostStore :
[<FromBodyAttribute>] request : CardStoreRequest *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<ActionResult<CardStoreResponse>>
- request CardStoreRequest
- Request to save the card.
- cancellationToken CancellationToken (Optional)
- Token to cancel async task.
TaskActionResultCardStoreResponseResponse to the request.