У мене цей код:
private async void ContextMenuForGroupRightTapped(object sender, RightTappedRoutedEventArgs args)
{
CheckBox ckbx = null;
if (sender is CheckBox)
{
ckbx = sender as CheckBox;
}
if (null == ckbx)
{
return;
}
string groupName = ckbx.Content.ToString();
var contextMenu = new PopupMenu();
// Add a command to edit the current Group
contextMenu.Commands.Add(new UICommand("Edit this Group", (contextMenuCmd) =>
{
Frame.Navigate(typeof(LocationGroupCreator), groupName);
}));
// Add a command to delete the current Group
contextMenu.Commands.Add(new UICommand("Delete this Group", (contextMenuCmd) =>
{
SQLiteUtils slu = new SQLiteUtils();
slu.DeleteGroupAsync(groupName); // this line raises Resharper's hackles, but appending await raises err msg. Where should the "async" be?
}));
// Show the context menu at the position the image was right-clicked
await contextMenu.ShowAsync(args.GetPosition(this));
}
... на що інспекція Решарпера скаржилася на: " Оскільки цього дзвінка не чекають, виконання поточного методу триває до завершення виклику. Подумайте про застосування оператора" очікувати "до результату виклику " (у рядку з коментар).
І отже, я передчував "очікування" на це, але, звичайно, мені теж потрібно десь додати "асинхронізацію" - але куди?
1
docs.microsoft.com/en-us/dotnet/csharp/programming-guide/…
—
samis
@samsara: Приємно, мені цікаво, коли вони нарешті задокументували, що десь поза специфікацією C #. IIRC, жодної документації не було на момент запитання.
—
BoltClock