Closed schmidtc63 closed 6 years ago
I haven't used webforms in a long time. Does it support async/await? How are you calling this method?
If you want to make it behave non-async, you can do it yourself with:
IEnumerable<GoogleAddress> addresses = geocoder.GeocodeAsync("1600 pennsylvania ave washington dc").Result;
I'm running this in mycontrol.ascx.cs:
It never makes it past the "await geocoder". No error. It just stops processing. Are there any non-async calls like there used to be?