J'ai besoin d'appeler une asyncméthode dans un catchbloc avant de lancer à nouveau l'exception (avec sa trace de pile) comme ceci: try { // Do something } catch { // <- Clean things here with async methods throw; } Mais malheureusement, vous ne pouvez pas utiliser awaitdans un bloc catchou …
J'ai le code suivant: WebClient wc = new WebClient(); string result; try { result = await wc.DownloadStringTaskAsync( new Uri( "http://badurl" ) ); } catch { result = await wc.DownloadStringTaskAsync( new Uri( "http://fallbackurl" ) ); } Fondamentalement, je veux télécharger à partir d'une URL et en cas d'échec avec une exception, …
We use cookies and other tracking technologies to improve your browsing experience on our website,
to show you personalized content and targeted ads, to analyze our website traffic,
and to understand where our visitors are coming from.
By continuing, you consent to our use of cookies and other tracking technologies and
affirm you're at least 16 years old or have consent from a parent or guardian.