第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Xamarin HttpClient 卡住并且不返回控制權

Xamarin HttpClient 卡住并且不返回控制權

C#
繁華開滿天機 2023-07-22 16:33:19
我不明白為什么主線程不交出控制權來處理結(jié)果。public partial class NewTravelPage : ContentPage    {        public NewTravelPage()        {            InitializeComponent();        }        protected async override void OnAppearing()        {            var locator = CrossGeolocator.Current;            var position = await locator.GetPositionAsync();            var vanues = await VenueLogic.getVenues(position.Latitude, position.Longitude);            venueListView.ItemsSource = vanues;        }    }我調(diào)用方法 getVenues:public class VenueLogic    {        public async static Task<List<Venue>> getVenues(double latitude, double longitude)        {            List<Venue> vanues = new List<Venue>();            var url = VenueRoot.GenerateUrl(latitude, longitude);            using (HttpClient client = new HttpClient())            {                var res = await client.GetAsync("https://stackoverflow.com");                 // here the code gives control to the main thread and stucks                var response = await res.Content.ReadAsStringAsync();                var venueRoot = JsonConvert.DeserializeObject<VenueRoot>                                                                 (response);                vanues = venueRoot.response.venues as List<Venue>;            }            return vanues;        }    }使用.NetStandard;請幫忙!我不明白僵局發(fā)生在哪里
查看完整描述

1 回答

?
手掌心

TA貢獻1942條經(jīng)驗 獲得超3個贊

您的async void非事件處理程序意味著您的即發(fā)即忘調(diào)用將無法捕獲可能引發(fā)的任何異常。

使用事件處理程序修復該問題

public partial class NewTravelPage : ContentPage {

? ? public NewTravelPage() {

? ? ? ? InitializeComponent();

? ? ? ? appearing += onAppearing;

? ? }


? ? protected override void OnAppearing() {

? ? ? ? appearing(this, EventArgs.Empty);

? ? }


? ? event EventHandler appearing = delegate { };


? ? private async void onAppearing(object sender, EventArgs args) {

? ? ? ? try {

? ? ? ? ? ? var locator = CrossGeolocator.Current;

? ? ? ? ? ? var position = await locator.GetPositionAsync();


查看完整回答
反對 回復 2023-07-22
  • 1 回答
  • 0 關注
  • 148 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網(wǎng)微信公眾號