DashboardsControllerPostStoreDashboard - метод
Stores dashboard changes.
Пространство имён: Tessa.Web.ControllersСборка: Tessa.Web (в Tessa.Web.dll) Версия: 4.1.3+7e2b1422f9b8c7c41fbbc4b151a843bed05319ab
[HttpPostAttribute("store")]
[SessionMethodAttribute(UserAccessLevel.Regular, false, new string[] { ... })]
[ConsumesAttribute("application/json", new string[] { ... })]
[TypedJsonBodyAttribute]
[DisableRequestSizeLimitAttribute]
[ProducesAttribute("application/json", new string[] { ... })]
[ProducesResponseTypeAttribute(200)]
public Task<ActionResult<DashboardStoreResponse>> PostStoreDashboard(
[FromBodyAttribute] DashboardStoreRequest dashboardStoreRequest,
CancellationToken cancellationToken = default
)
<HttpPostAttribute("store")>
<SessionMethodAttribute(UserAccessLevel.Regular, false, New String() { ... })>
<ConsumesAttribute("application/json", New String() { ... })>
<TypedJsonBodyAttribute>
<DisableRequestSizeLimitAttribute>
<ProducesAttribute("application/json", New String() { ... })>
<ProducesResponseTypeAttribute(200)>
Public Function PostStoreDashboard (
<FromBodyAttribute> dashboardStoreRequest As DashboardStoreRequest,
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of ActionResult(Of DashboardStoreResponse))
public:
[HttpPostAttribute(L"store")]
[SessionMethodAttribute(UserAccessLevel::Regular, false, __gc new array<String^>^ { ... })]
[ConsumesAttribute(L"application/json", __gc new array<String^>^ { ... })]
[TypedJsonBodyAttribute]
[DisableRequestSizeLimitAttribute]
[ProducesAttribute(L"application/json", __gc new array<String^>^ { ... })]
[ProducesResponseTypeAttribute(200)]
Task<ActionResult<DashboardStoreResponse^>^>^ PostStoreDashboard(
[FromBodyAttribute] DashboardStoreRequest^ dashboardStoreRequest,
CancellationToken cancellationToken = CancellationToken()
)
[<HttpPostAttribute("store")>]
[<SessionMethodAttribute(UserAccessLevel.Regular, false, new string[] { ... })>]
[<ConsumesAttribute("application/json", new string[] { ... })>]
[<TypedJsonBodyAttribute>]
[<DisableRequestSizeLimitAttribute>]
[<ProducesAttribute("application/json", new string[] { ... })>]
[<ProducesResponseTypeAttribute(200)>]
member PostStoreDashboard :
[<FromBodyAttribute>] dashboardStoreRequest : DashboardStoreRequest *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<ActionResult<DashboardStoreResponse>>
- dashboardStoreRequest DashboardStoreRequest
Dashboard store request.
- cancellationToken CancellationToken (Optional)
Propagates notification that operations should be canceled.
TaskActionResultDashboardStoreResponse
Dashboard store response.