GroupsControllerGetAllGroups(String, CancellationToken) - метод
Get information on all available groups at category.
Пространство имён: Tessa.Web.ControllersСборка: Tessa.Web (в Tessa.Web.dll) Версия: 4.2.1+2efecbe35c10dec386bb05925f2876c4acbb708d
[HttpGetAttribute("c/{category}")]
[SessionMethodAttribute(UserAccessLevel.Regular, false, new string[] { ... })]
[ProducesAttribute("application/json", new string[] { ... })]
[ProducesResponseTypeAttribute(200)]
public Task<ActionResult<List<GroupInfo>>> GetAllGroups(
[FromRouteAttribute] string category,
CancellationToken cancellationToken = default
)
<HttpGetAttribute("c/{category}")>
<SessionMethodAttribute(UserAccessLevel.Regular, false, New String() { ... })>
<ProducesAttribute("application/json", New String() { ... })>
<ProducesResponseTypeAttribute(200)>
Public Function GetAllGroups (
<FromRouteAttribute> category As String,
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of ActionResult(Of List(Of GroupInfo)))
public:
[HttpGetAttribute(L"c/{category}")]
[SessionMethodAttribute(UserAccessLevel::Regular, false, __gc new array<String^>^ { ... })]
[ProducesAttribute(L"application/json", __gc new array<String^>^ { ... })]
[ProducesResponseTypeAttribute(200)]
Task<ActionResult<List<GroupInfo^>^>^>^ GetAllGroups(
[FromRouteAttribute] String^ category,
CancellationToken cancellationToken = CancellationToken()
)
[<HttpGetAttribute("c/{category}")>]
[<SessionMethodAttribute(UserAccessLevel.Regular, false, new string[] { ... })>]
[<ProducesAttribute("application/json", new string[] { ... })>]
[<ProducesResponseTypeAttribute(200)>]
member GetAllGroups :
[<FromRouteAttribute>] category : string *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<ActionResult<List<GroupInfo>>>
- category String
- The URL-encoded category name of the groups. See Name.
- cancellationToken CancellationToken (Optional)
Propagates notification that operations should be canceled.
TaskActionResultListGroupInfoInformation on a group.