You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From the above example, the start function creates a progress bar, and binds ProcessFiles to the progress.
What I have, is the exact same, but the ProcessFiles is an async Task, and is await-ed from inside the using statement of the progress bar.
This makes the progress bar always display 100%, and progress is not updated.
How would this be solved?
The text was updated successfully, but these errors were encountered:
https://github.com/Mpdreamz/shellprogressbar/blob/master/src/ShellProgressBar.Example/Examples/IntegrationWithIProgressPercentageExample.cs
From the above example, the
start
function creates a progress bar, and bindsProcessFiles
to the progress.What I have, is the exact same, but the
ProcessFiles
is anasync Task
, and isawait
-ed from inside theusing
statement of the progress bar.This makes the progress bar always display 100%, and progress is not updated.
How would this be solved?
The text was updated successfully, but these errors were encountered: