DocumentAnalysisClient.ClassifyDocument 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 Azure.AI.FormRecognizer.DocumentAnalysis.ClassifyDocumentOperation ClassifyDocument (Azure.WaitUntil waitUntil, string classifierId, System.IO.Stream document, System.Threading.CancellationToken cancellationToken = default);
abstract member ClassifyDocument : Azure.WaitUntil * string * System.IO.Stream * System.Threading.CancellationToken -> Azure.AI.FormRecognizer.DocumentAnalysis.ClassifyDocumentOperation
override this.ClassifyDocument : Azure.WaitUntil * string * System.IO.Stream * System.Threading.CancellationToken -> Azure.AI.FormRecognizer.DocumentAnalysis.ClassifyDocumentOperation
Public Overridable Function ClassifyDocument (waitUntil As WaitUntil, classifierId As String, document As Stream, Optional cancellationToken As CancellationToken = Nothing) As 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.
- document
- Stream
The stream containing one or more documents to classify.
- 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