DocumentAnalysisClient.ClassifyDocumentFromUriAsync Method

Definition

Classifies one or more documents using a document classifier built with custom documents.

public virtual System.Threading.Tasks.Task<Azure.AI.FormRecognizer.DocumentAnalysis.ClassifyDocumentOperation> ClassifyDocumentFromUriAsync (Azure.WaitUntil waitUntil, string classifierId, Uri documentUri, System.Threading.CancellationToken cancellationToken = default);
abstract member ClassifyDocumentFromUriAsync : Azure.WaitUntil * string * Uri * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.AI.FormRecognizer.DocumentAnalysis.ClassifyDocumentOperation>
override this.ClassifyDocumentFromUriAsync : Azure.WaitUntil * string * Uri * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.AI.FormRecognizer.DocumentAnalysis.ClassifyDocumentOperation>
Public Overridable Function ClassifyDocumentFromUriAsync (waitUntil As WaitUntil, classifierId As String, documentUri As Uri, Optional cancellationToken As CancellationToken = Nothing) As Task(Of ClassifyDocumentOperation)

Parameters

waitUntil
WaitUntil

Completed if the method should wait to return until the long-running operation has completed on the service; Started if it should return after starting the operation.

classifierId
String

The ID of the document classifier to use.

documentUri
Uri

The absolute URI of the remote file to classify documents from.

cancellationToken
CancellationToken

A CancellationToken controlling the request lifetime.

Returns

A ClassifyDocumentOperation to wait on this long-running operation. Its Value upon successful completion will contain documents classified from the input.

Applies to