EvaluationTaxonomies.GetAllAsync 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
| Name | Description |
|---|---|
| GetAllAsync(String, String, RequestOptions) |
[Protocol Method] Returns the evaluation taxonomies available in the project, optionally filtered by input name or input type.
|
| GetAllAsync(String, String, CancellationToken) |
Returns the evaluation taxonomies available in the project, optionally filtered by input name or input type. |
GetAllAsync(String, String, RequestOptions)
- Source:
- EvaluationTaxonomies.cs
- Source:
- EvaluationTaxonomies.cs
[Protocol Method] Returns the evaluation taxonomies available in the project, optionally filtered by input name or input type.
- This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual System.ClientModel.Primitives.AsyncCollectionResult GetAllAsync(string inputName, string inputType, System.ClientModel.Primitives.RequestOptions options);
abstract member GetAllAsync : string * string * System.ClientModel.Primitives.RequestOptions -> System.ClientModel.Primitives.AsyncCollectionResult
override this.GetAllAsync : string * string * System.ClientModel.Primitives.RequestOptions -> System.ClientModel.Primitives.AsyncCollectionResult
Public Overridable Function GetAllAsync (inputName As String, inputType As String, options As RequestOptions) As AsyncCollectionResult
Parameters
- inputName
- String
Filter by the evaluation input name.
- inputType
- String
Filter by taxonomy input type.
- options
- RequestOptions
The request options, which can override default behaviors of the client pipeline on a per-call basis.
Returns
The response returned from the service.
Exceptions
Service returned a non-success status code.
Applies to
GetAllAsync(String, String, CancellationToken)
- Source:
- EvaluationTaxonomies.cs
- Source:
- EvaluationTaxonomies.cs
Returns the evaluation taxonomies available in the project, optionally filtered by input name or input type.
public virtual System.ClientModel.AsyncCollectionResult<Azure.AI.Projects.Evaluation.EvaluationTaxonomy> GetAllAsync(string inputName = default, string inputType = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAllAsync : string * string * System.Threading.CancellationToken -> System.ClientModel.AsyncCollectionResult<Azure.AI.Projects.Evaluation.EvaluationTaxonomy>
override this.GetAllAsync : string * string * System.Threading.CancellationToken -> System.ClientModel.AsyncCollectionResult<Azure.AI.Projects.Evaluation.EvaluationTaxonomy>
Public Overridable Function GetAllAsync (Optional inputName As String = Nothing, Optional inputType As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncCollectionResult(Of EvaluationTaxonomy)
Parameters
- inputName
- String
Filter by the evaluation input name.
- inputType
- String
Filter by taxonomy input type.
- cancellationToken
- CancellationToken
The cancellation token that can be used to cancel the operation.
Returns
Exceptions
Service returned a non-success status code.