Posts by Pazoti • 1 point
2 posts
-
0
votes1
answer24
viewsA: Is it possible to sign a lib event on a REST request and wait for the return?
Follow the solution I applied private string text = string.Empty; private ManualResetEvent manualResetEvent = new ManualResetEvent(false); public string Get() { var result = Task.Run(() => {…
-
0
votes1
answer24
viewsQ: Is it possible to sign a lib event on a REST request and wait for the return?
I wonder if it is possible to sign an event from a third party lib, which in the case is Microsoft.Speech.dll. Because, in my attempt, it did not work very well, ie, recognition does not happen and…