我正在表演
appts.SearchAsync
上
var appts = new Appointments();
在“定期代理”中。问题在于期刊代理。searchasync 和它的嵌套函数从未完成过
NotifyComplete();
}
您能否帮助我了解如何等待此处正在进行的所有呼叫:
static void Appointments_SearchCompleted(object sender, AppointmentsSearchEventArgs e)
{
try
{
UpdatePrimaryTile(e.Results
.Where(a => a.Subject != null)
.OrderBy(a => a.StartTime)
.ToList());
}
catch (System.Exception)
{
}
}
public static void UpdatePrimaryTile(List<Appointment> calendarItems)
{
...........
..........
}
在调用“NotifyComplete”之前。
谢谢!
雅库布