ConversationAnalysisAuthoringClient.GetSupportedPrebuiltEntitiesAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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)
[Protocol Method] Lists the supported prebuilt entities that can be used while creating composed entities.
- This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
- Please try the simpler GetSupportedPrebuiltEntitiesAsync(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, String, String, CancellationToken) convenience overload with strongly typed models first.
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
- 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)
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
- 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.