WorkplacesControllerPostGetModels - метод
Get requested workplaces info including their attributes, permissions and metadata.
It can be used to modify workplaces. Method is available for administrators only.
Пространство имён: Tessa.Web.ControllersСборка: Tessa.Web (в Tessa.Web.dll) Версия: 4.0.4
[HttpPostAttribute("get-models")]
[SessionMethodAttribute(UserAccessLevel.Administrator)]
[TypedJsonBodyAttribute]
[ConsumesAttribute("application/json", new string[] { ... })]
[ProducesAttribute("application/json", new string[] { ... })]
[ProducesResponseTypeAttribute(200)]
public Task<ActionResult<List<JsonWorkplaceModel>>> PostGetModels(
[FromBodyAttribute] PlainGetModelRequest request,
CancellationToken cancellationToken = default
)
<HttpPostAttribute("get-models")>
<SessionMethodAttribute(UserAccessLevel.Administrator)>
<TypedJsonBodyAttribute>
<ConsumesAttribute("application/json", New String() { ... })>
<ProducesAttribute("application/json", New String() { ... })>
<ProducesResponseTypeAttribute(200)>
Public Function PostGetModels (
<FromBodyAttribute> request As PlainGetModelRequest,
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of ActionResult(Of List(Of JsonWorkplaceModel)))
public:
[HttpPostAttribute(L"get-models")]
[SessionMethodAttribute(UserAccessLevel::Administrator)]
[TypedJsonBodyAttribute]
[ConsumesAttribute(L"application/json", __gc new array<String^>^ { ... })]
[ProducesAttribute(L"application/json", __gc new array<String^>^ { ... })]
[ProducesResponseTypeAttribute(200)]
Task<ActionResult<List<JsonWorkplaceModel^>^>^>^ PostGetModels(
[FromBodyAttribute] PlainGetModelRequest^ request,
CancellationToken cancellationToken = CancellationToken()
)
[<HttpPostAttribute("get-models")>]
[<SessionMethodAttribute(UserAccessLevel.Administrator)>]
[<TypedJsonBodyAttribute>]
[<ConsumesAttribute("application/json", new string[] { ... })>]
[<ProducesAttribute("application/json", new string[] { ... })>]
[<ProducesResponseTypeAttribute(200)>]
member PostGetModels :
[<FromBodyAttribute>] request : PlainGetModelRequest *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<ActionResult<List<JsonWorkplaceModel>>>
- request PlainGetModelRequest
- Request to get workplaces info.
- cancellationToken CancellationToken (Optional)
- Token to cancel async task.
TaskActionResultListJsonWorkplaceModelWorkplaces info.