Ich habe diesen Code:
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));
}
... über die sich Resharper bei der Inspektion beschwert hat: " Da dieser Aufruf nicht erwartet wird, wird die Ausführung der aktuellen Methode fortgesetzt, bevor der Anruf abgeschlossen ist. Erwägen Sie, den Operator" Warten "auf das Ergebnis des Anrufs anzuwenden " (in der Zeile mit dem Kommentar).
Also habe ich ein "Warten" vorangestellt, aber natürlich muss ich dann auch irgendwo ein "Async" hinzufügen - aber wo?
c#
lambda
resharper
windows-store-apps
async-await
B. Clay Shannon
quelle
quelle
Antworten:
Um ein Lambda als asynchron zu markieren, stellen Sie einfach
async
vor seine Argumentliste:quelle
Und für diejenigen unter Ihnen, die einen anonymen Ausdruck verwenden:
quelle