Azure Form Recognizer
An Azure service that applies machine learning to extract text, key/value pairs, tables, and structures from documents.
695 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Code:
FormPageCollection formPages = await recognizerClient
.StartRecognizeContentAsync(stream)
.WaitForCompletionAsync();
Question:
When I use this piece of code from console application(.net frame work 4.6.2), it successfully responded.
But if I use this piece of code from .net MVC, it doesn't respond.
Does form recognizer not support web version?
In fact my controller forgot to use async Task<ActionResult>, the problem is solved
Id use a coexisting cord string.
In fact my controller forgot to use async Task<ActionResult>, the problem is solved