DashboardsControllerPostChanges - метод
Gets a list of the specified dashboard changes.
Пространство имён: Tessa.Web.ControllersСборка: Tessa.Web (в Tessa.Web.dll) Версия: 4.1.3+7e2b1422f9b8c7c41fbbc4b151a843bed05319ab
[HttpPostAttribute("changes/{dashboardID:guid}")]
[SessionMethodAttribute(UserAccessLevel.Regular, false, new string[] { ... })]
[ConsumesAttribute("application/json", new string[] { ... })]
[TypedJsonBodyAttribute]
[ProducesAttribute("application/json", new string[] { ... })]
[ProducesResponseTypeAttribute(200)]
public Task<ActionResult<Dashboard?>> PostChanges(
[FromRouteAttribute] Guid dashboardID,
[FromBodyAttribute] GetDashboardChangesRequest request,
CancellationToken cancellationToken = default
)
<HttpPostAttribute("changes/{dashboardID:guid}")>
<SessionMethodAttribute(UserAccessLevel.Regular, false, New String() { ... })>
<ConsumesAttribute("application/json", New String() { ... })>
<TypedJsonBodyAttribute>
<ProducesAttribute("application/json", New String() { ... })>
<ProducesResponseTypeAttribute(200)>
Public Function PostChanges (
<FromRouteAttribute> dashboardID As Guid,
<FromBodyAttribute> request As GetDashboardChangesRequest,
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of ActionResult(Of Dashboard))
public:
[HttpPostAttribute(L"changes/{dashboardID:guid}")]
[SessionMethodAttribute(UserAccessLevel::Regular, false, __gc new array<String^>^ { ... })]
[ConsumesAttribute(L"application/json", __gc new array<String^>^ { ... })]
[TypedJsonBodyAttribute]
[ProducesAttribute(L"application/json", __gc new array<String^>^ { ... })]
[ProducesResponseTypeAttribute(200)]
Task<ActionResult<Dashboard^>^>^ PostChanges(
[FromRouteAttribute] Guid dashboardID,
[FromBodyAttribute] GetDashboardChangesRequest^ request,
CancellationToken cancellationToken = CancellationToken()
)
[<HttpPostAttribute("changes/{dashboardID:guid}")>]
[<SessionMethodAttribute(UserAccessLevel.Regular, false, new string[] { ... })>]
[<ConsumesAttribute("application/json", new string[] { ... })>]
[<TypedJsonBodyAttribute>]
[<ProducesAttribute("application/json", new string[] { ... })>]
[<ProducesResponseTypeAttribute(200)>]
member PostChanges :
[<FromRouteAttribute>] dashboardID : Guid *
[<FromBodyAttribute>] request : GetDashboardChangesRequest *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<ActionResult<Dashboard>>
- dashboardID Guid
- Dashboard identifier.
- request GetDashboardChangesRequest
- Request for a list of changes.
- cancellationToken CancellationToken (Optional)
Propagates notification that operations should be canceled.
TaskActionResultDashboardList of changes.