EvaluationTaxonomies.GetAll Method

Definition

Overloads

Name Description
GetAll(String, String, RequestOptions)

[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.
GetAll(String, String, CancellationToken)

Returns the evaluation taxonomies available in the project, optionally filtered by input name or input type.

GetAll(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.CollectionResult GetAll(string inputName, string inputType, System.ClientModel.Primitives.RequestOptions options);
abstract member GetAll : string * string * System.ClientModel.Primitives.RequestOptions -> System.ClientModel.Primitives.CollectionResult
override this.GetAll : string * string * System.ClientModel.Primitives.RequestOptions -> System.ClientModel.Primitives.CollectionResult
Public Overridable Function GetAll (inputName As String, inputType As String, options As RequestOptions) As CollectionResult

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

GetAll(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.CollectionResult<Azure.AI.Projects.Evaluation.EvaluationTaxonomy> GetAll(string inputName = default, string inputType = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAll : string * string * System.Threading.CancellationToken -> System.ClientModel.CollectionResult<Azure.AI.Projects.Evaluation.EvaluationTaxonomy>
override this.GetAll : string * string * System.Threading.CancellationToken -> System.ClientModel.CollectionResult<Azure.AI.Projects.Evaluation.EvaluationTaxonomy>
Public Overridable Function GetAll (Optional inputName As String = Nothing, Optional inputType As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As CollectionResult(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.

Applies to