CognitiveServicesAgentApplicationCollection.GetAll Method

Definition

Lists Agent Applications in the project.

  • Request Path. : /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CognitiveServices/accounts/{accountName}/projects/{projectName}/applications.
  • Operation Id. : AgentApplications_List.
  • Default Api Version. : 2026-01-15-preview.
public virtual Azure.Pageable<Azure.ResourceManager.CognitiveServices.CognitiveServicesAgentApplicationResource> GetAll(int? count = default, int? skip = default, string skipToken = default, System.Collections.Generic.IEnumerable<string> names = default, string searchText = default, string orderBy = default, bool? orderByAsc = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAll : Nullable<int> * Nullable<int> * string * seq<string> * string * string * Nullable<bool> * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.CognitiveServices.CognitiveServicesAgentApplicationResource>
override this.GetAll : Nullable<int> * Nullable<int> * string * seq<string> * string * string * Nullable<bool> * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.CognitiveServices.CognitiveServicesAgentApplicationResource>
Public Overridable Function GetAll (Optional count As Nullable(Of Integer) = Nothing, Optional skip As Nullable(Of Integer) = Nothing, Optional skipToken As String = Nothing, Optional names As IEnumerable(Of String) = Nothing, Optional searchText As String = Nothing, Optional orderBy As String = Nothing, Optional orderByAsc As Nullable(Of Boolean) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of CognitiveServicesAgentApplicationResource)

Parameters

count
Nullable<Int32>

Number of agent applications to be retrieved in a page of results.

skip
Nullable<Int32>

Number of agent applications to skip.

skipToken
String

Continuation token for pagination.

names
IEnumerable<String>

Names of agent applications to retrieve.

searchText
String

Search text for filtering agent applications.

orderBy
String

Field to order by.

orderByAsc
Nullable<Boolean>

Whether to order in ascending order.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

A collection of CognitiveServicesAgentApplicationResource that may take multiple service requests to iterate over.

Applies to