1. ホーム
  2. c#

[解決済み】ラムダ式を非同期とマークするのはどこですか?

2022-04-02 04:22:39

質問

このようなコードがあります。

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));
}

...レシャパーの検査で文句を言われたこと、"。 この呼び出しは待ち受けされていないため、呼び出しが完了する前に現在のメソッドの実行が継続されます。呼び出しの結果に対して 'await' 演算子を適用することを考えてみましょう。 "(コメントのある行の)。

で、quot;await"を付けたけど、もちろんquot;async"もどこかに付けなければならない。

解決方法は?

ラムダを非同期でマークするには、単にその前に async を引数リストの前に置く。

// Add a command to delete the current Group
contextMenu.Commands.Add(new UICommand("Delete this Group", async (contextMenuCmd) =>
{
    SQLiteUtils slu = new SQLiteUtils();
    await slu.DeleteGroupAsync(groupName);
}));