No announcements
Found 2110260 threads
-
0 Votes
handled unhandled exception with async/await?
exception is unhandled, when I clearly have that task awaited within a try/catch block, and the catch is in fact hit with this exception ...Unanswered | 5 Replies | 417 Views | Created by Elijah Kohrt - Friday, April 20, 2018 6:40 AM | Last reply by Elijah Kohrt - Wednesday, April 25, 2018 8:06 AM -
0 Votes
Help With Async/Await
your async method it will do its work and, since you aren't configuring await, resume on the UI. So when the UI first loads you can display a "loading" styling ...Answered | 1 Replies | 324 Views | Created by IndigoMontoya - Thursday, November 1, 2018 5:28 PM | Last reply by CoolDadTx - Thursday, November 1, 2018 6:25 PM -
2 Votes
async , await
SendRequest(sck, msg); } catch (Exception ex) { Log.Error($"SendSocket {ex.Message}"); }; } //Not async, doesn't need to ...Answered | 3 Replies | 529 Views | Created by Markus Freitag - Friday, February 8, 2019 5:04 PM | Last reply by CoolDadTx - Saturday, February 9, 2019 4:03 PM -
0 Votes
Async Await
A very good MSDN documentation for you to better understand async and await: Asynchronous Programming withAnswered | 2 Replies | 734 Views | Created by Joaquinmm - Monday, July 7, 2014 10:09 PM | Last reply by Caillen - Wednesday, July 9, 2014 7:36 AM -
0 Votes
Unit tests with async/await?
please check ...Answered | 2 Replies | 1607 Views | Created by Kim Johnson - Thursday, July 26, 2012 3:35 PM | Last reply by Kim Johnson - Friday, July 27, 2012 3:02 PM -
0 Votes
Async Task with No 'await'
don't like this idea at all... This would make it impossible to use async/await on UI event handlers. They are almost always "void" methods. ...Answered | 1 Replies | 10288 Views | Created by Emil2000 - Sunday, October 31, 2010 6:44 PM | Last reply by Reed Copsey, Jr - Sunday, October 31, 2010 7:57 PM -
1 Votes
Async method lacks await
enables the await keyword in the method and changes how method results are handled. That’s all the async keyword does: httpAnswered | 2 Replies | 6060 Views | Created by AsusT9 - Wednesday, January 14, 2015 1:00 PM | Last reply by Magnus (MM8) - Wednesday, January 14, 2015 1:35 PM -
1 Votes
await SuspensionManager.RestoreAsync async error
I am getting this error message and I can't figure out why. The 'await' operator can only be used within an async method. Consider marking this method ...Answered | 1 Replies | 682 Views | Created by bionicman08 - Tuesday, March 24, 2015 3:38 PM | Last reply by Oliver Ulm - Tuesday, March 24, 2015 3:49 PM -
0 Votes
async / await some reasoning
I have publish new post on some reasoning about the await keyword http -
3 Votes
unhandled exception never handled and keeps repeating
. Since I do not have VS2005 on any of my machines I can not downgrade the following article I did for unhandled exceptionAnswered | 4 Replies | 1451 Views | Created by cupboy1 - Thursday, August 15, 2013 1:49 AM | Last reply by Kareninstructor - Friday, August 16, 2013 10:11 PM -
0 Votes
Async/Await Question
'await' operator can only be used within an async method. Consider marking this method with the 'async' modifier and changing its return type to ...Answered | 1 Replies | 288 Views | Created by IndigoMontoya - Monday, March 7, 2016 9:33 PM | Last reply by Brian Muth - Tuesday, March 8, 2016 12:22 AM -
2 Votes
Async Await Issues
await checkForNewFiles()); As does this with theAnswered | 4 Replies | 1896 Views | Created by StormENT - Tuesday, August 28, 2012 1:13 PM | Last reply by StormENT - Tuesday, August 28, 2012 5:40 PM -
0 Votes
problem with "await" and "async"
page Geolocator myGeolocator = new Geolocator(); Geoposition myGeoposition = await myGeolocator.GetGeopositionAsync(); ...Unanswered | 1 Replies | 511 Views | Created by BeginnerDev - Thursday, March 6, 2014 12:49 AM | Last reply by Rob Caplan [MSFT] - Thursday, March 6, 2014 1:27 AM -
0 Votes
new post about async / await
-async-await.aspx http://blogs.microsoft.co.il/blogs/bnaya/archive/2012/01/12/async-await-and-exception-handling.aspx ... -
0 Votes
async and await
Using await/async in a console app is always pretty confusing. I don't think console apps work very well with async/await and in your ...Answered | 4 Replies | 454 Views | Created by berk_canc - Wednesday, December 7, 2016 6:57 AM | Last reply by CoolDadTx - Thursday, December 8, 2016 3:14 PM -
0 Votes
async and await
If every method that has the await keyword inside of it needs to be async, and if every async method that is called needs to be called with the await ...Answered | 3 Replies | 450 Views | Created by MarcinMR - Monday, March 7, 2016 4:25 PM | Last reply by cgentsis - Monday, March 7, 2016 5:23 PM -
0 Votes
Unhandled exception error, but it's handled
Exceptions i have the check activeUnanswered | 9 Replies | 4813 Views | Created by RiccardoVr - Thursday, July 23, 2009 7:07 PM | Last reply by RiccardoVr - Tuesday, July 28, 2009 5:02 PM -
2 Votes
Async / Await design question
That's basically what async/await does, but it makes the code a lot simpler, handles exceptions more cleanly, etc. It's just easier to ...Answered | 2 Replies | 812 Views | Created by Username already in use - Thursday, May 23, 2013 7:00 PM | Last reply by Reed Copsey, Jr - Thursday, May 23, 2013 7:29 PM -
0 Votes
using Async() with no await?
"using" statement where they are using the async version of the method...but there is no use of the "await" keyword to ensure completion of the ...Answered | 1 Replies | 402 Views | Created by LKeene - Tuesday, April 4, 2017 4:33 PM | Last reply by Edward8520 - Wednesday, April 5, 2017 2:29 AM -
2 Votes
Task await, async
operation is completed, continue to execute the logic under AwaitTaskAsynAsync. About Asynchronous programming with async and await, you can take a ...Answered | 4 Replies | 424 Views | Created by Markus Freitag - Tuesday, January 22, 2019 5:14 PM | Last reply by Cherry Bu - Thursday, January 24, 2019 1:33 AM - Items 1 to 20 of 2110260 Next ›
No announcements