Share via


ConversationAnalysisAuthoringClient.GetSupportedPrebuiltEntitiesAsync Method

Definition

Overloads

GetSupportedPrebuiltEntitiesAsync(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, String, String, RequestContext)

[Protocol Method] Lists the supported prebuilt entities that can be used while creating composed entities.

GetSupportedPrebuiltEntitiesAsync(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, String, String, CancellationToken)

Lists the supported prebuilt entities that can be used while creating composed entities.

GetSupportedPrebuiltEntitiesAsync(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, String, String, RequestContext)

Source:
ConversationAnalysisAuthoringClient.cs

[Protocol Method] Lists the supported prebuilt entities that can be used while creating composed entities.

public virtual Azure.AsyncPageable<BinaryData> GetSupportedPrebuiltEntitiesAsync(int? maxCount, int? skip, int? maxpagesize, string language, string multilingual, Azure.RequestContext context);
abstract member GetSupportedPrebuiltEntitiesAsync : Nullable<int> * Nullable<int> * Nullable<int> * string * string * Azure.RequestContext -> Azure.AsyncPageable<BinaryData>
override this.GetSupportedPrebuiltEntitiesAsync : Nullable<int> * Nullable<int> * Nullable<int> * string * string * Azure.RequestContext -> Azure.AsyncPageable<BinaryData>
Public Overridable Function GetSupportedPrebuiltEntitiesAsync (maxCount As Nullable(Of Integer), skip As Nullable(Of Integer), maxpagesize As Nullable(Of Integer), language As String, multilingual As String, context As RequestContext) As AsyncPageable(Of BinaryData)

Parameters

maxCount
Nullable<Int32>

The number of result items to return.

skip
Nullable<Int32>

The number of result items to skip.

maxpagesize
Nullable<Int32>

The maximum number of result items per page.

language
String

The language to get supported prebuilt entities for. Required if multilingual is false. This is BCP-47 representation of a language. For example, use "en" for English, "en-gb" for English (UK), "es" for Spanish etc.

multilingual
String

Whether to get the support prebuilt entities for multilingual or monolingual projects. If true, the language parameter is ignored.

context
RequestContext

The request context, which can override default behaviors of the client pipeline on a per-call basis.

Returns

The AsyncPageable<T> from the service containing a list of BinaryData objects. Details of the body schema for each item in the collection are in the Remarks section below.

Exceptions

Service returned a non-success status code.

Applies to

GetSupportedPrebuiltEntitiesAsync(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, String, String, CancellationToken)

Source:
ConversationAnalysisAuthoringClient.cs

Lists the supported prebuilt entities that can be used while creating composed entities.

public virtual Azure.AsyncPageable<Azure.AI.Language.Conversations.Authoring.ConversationAuthoringPrebuiltEntity> GetSupportedPrebuiltEntitiesAsync(int? maxCount = default, int? skip = default, int? maxpagesize = default, string language = default, string multilingual = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetSupportedPrebuiltEntitiesAsync : Nullable<int> * Nullable<int> * Nullable<int> * string * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.AI.Language.Conversations.Authoring.ConversationAuthoringPrebuiltEntity>
override this.GetSupportedPrebuiltEntitiesAsync : Nullable<int> * Nullable<int> * Nullable<int> * string * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.AI.Language.Conversations.Authoring.ConversationAuthoringPrebuiltEntity>
Public Overridable Function GetSupportedPrebuiltEntitiesAsync (Optional maxCount As Nullable(Of Integer) = Nothing, Optional skip As Nullable(Of Integer) = Nothing, Optional maxpagesize As Nullable(Of Integer) = Nothing, Optional language As String = Nothing, Optional multilingual As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of ConversationAuthoringPrebuiltEntity)

Parameters

maxCount
Nullable<Int32>

The number of result items to return.

skip
Nullable<Int32>

The number of result items to skip.

maxpagesize
Nullable<Int32>

The maximum number of result items per page.

language
String

The language to get supported prebuilt entities for. Required if multilingual is false. This is BCP-47 representation of a language. For example, use "en" for English, "en-gb" for English (UK), "es" for Spanish etc.

multilingual
String

Whether to get the support prebuilt entities for multilingual or monolingual projects. If true, the language parameter is ignored.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Applies to