DocumentAnalysisClient.ClassifyDocumentFromUriAsync 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.
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
Azure SDK for .NET