ラムダ式を非同期にマークするにはどうすればよいですか?


215

私はこのコードを持っています:

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

... Resharperの検査で「この呼び出しは待機されていないため、呼び出しが完了する前に現在のメソッドの実行が続行されます。呼び出しの結果に「await」演算子を適用することを検討してください」(コメント)。

そして、私はそれに "await"を付加しましたが、もちろん、 "async"をどこかに追加する必要があります-しかし、どこに?



1
@samsara:いいですね、C#仕様の外のどこかで最終的にドキュメント化されたのはいつでしょうか。IIRC、この質問がなされた時点で文書は存在しませんでした。
BoltClock

回答:


365

ラムダを非同期にマークする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);
}));

Visual Studioから、Async voidメソッドがサポートされていないというエラーが表示されます。
Kevin Burton

@Kevin Burton:ええ、非同期voidは通常、イベントハンドラーにのみ制限されます。使用しているAPIが非同期ではないか、非同期バージョンがあり、代わりに非同期タスクラムダが必要です。
BoltClock

22

そして、匿名の式を使用している人のために:

await Task.Run(async () =>
{
   SQLLiteUtils slu = new SQLiteUtils();
   await slu.DeleteGroupAsync(groupname);
});
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.