WorkplacesControllerPostSaveProperties - метод
Сохраняет настройки представлений в рабочих местах для текущего пользователя. Это включает настройки по сортировке,
группировке и скрытию столбцов представлений, а также относительные размеры областей с представлениями в master-detail отчётах.
Пространство имён: Tessa.Web.ControllersСборка: Tessa.Web (в Tessa.Web.dll) Версия: 3.6.0.22
[HttpPostAttribute("save-properties")]
[SessionMethodAttribute(UserAccessLevel.Regular)]
[TypedJsonBodyAttribute]
[ConsumesAttribute("application/json", new string[] { ... })]
[ProducesAttribute("application/json", new string[] { ... })]
[ProducesResponseTypeAttribute(204)]
public Task<ActionResult> PostSaveProperties(
[FromBodyAttribute] List<JsonItemProperties> properties,
CancellationToken cancellationToken = default
)
<HttpPostAttribute("save-properties")>
<SessionMethodAttribute(UserAccessLevel.Regular)>
<TypedJsonBodyAttribute>
<ConsumesAttribute("application/json", New String() { ... })>
<ProducesAttribute("application/json", New String() { ... })>
<ProducesResponseTypeAttribute(204)>
Public Function PostSaveProperties (
<FromBodyAttribute> properties As List(Of JsonItemProperties),
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of ActionResult)
public:
[HttpPostAttribute(L"save-properties")]
[SessionMethodAttribute(UserAccessLevel::Regular)]
[TypedJsonBodyAttribute]
[ConsumesAttribute(L"application/json", __gc new array<String^>^ { ... })]
[ProducesAttribute(L"application/json", __gc new array<String^>^ { ... })]
[ProducesResponseTypeAttribute(204)]
Task<ActionResult^>^ PostSaveProperties(
[FromBodyAttribute] List<JsonItemProperties^>^ properties,
CancellationToken cancellationToken = CancellationToken()
)
[<HttpPostAttribute("save-properties")>]
[<SessionMethodAttribute(UserAccessLevel.Regular)>]
[<TypedJsonBodyAttribute>]
[<ConsumesAttribute("application/json", new string[] { ... })>]
[<ProducesAttribute("application/json", new string[] { ... })>]
[<ProducesResponseTypeAttribute(204)>]
member PostSaveProperties :
[<FromBodyAttribute>] properties : List<JsonItemProperties> *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<ActionResult>
- properties ListJsonItemProperties
- Сохраняемые настройки представлений.
- cancellationToken CancellationToken (Optional)
- Объект, посредством которого можно отменить асинхронную задачу.
TaskActionResultАсинхронная задача.