using System.Threading.Tasks;
namespace AsyncVoidPlayground
public Task StopRecordingVideoAsync()
public async Task OnContinue()
await StopRecordingVideoAsync();
static void TaskScheduler_UnobservedTaskException(object sender, UnobservedTaskExceptionEventArgs e)
Console.WriteLine(e.Exception);
async static Task Main(string[] args)
TaskScheduler.UnobservedTaskException += TaskScheduler_UnobservedTaskException;
var vm = new CheckInVM();
GC.WaitForPendingFinalizers();