ฉันจะทำเครื่องหมาย async ของแลมบ์ดาได้ที่ไหน?


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 บ่นเกี่ยวกับ " เนื่องจากการโทรนี้ยังไม่รอการดำเนินการของวิธีการปัจจุบันจะดำเนินต่อไปก่อนที่การโทรจะเสร็จสิ้นให้ลองใช้ตัวดำเนินการ 'คอย' กับผลลัพธ์ของการโทร " (บนบรรทัดที่มี แสดงความคิดเห็น)

ดังนั้นฉันจึงเตรียม "รอ" ไว้ แต่แน่นอนฉันต้องเพิ่ม "async" ที่อื่นด้วย - แต่ที่ไหน



1
@samsara: ดีฉันสงสัยว่าในที่สุดพวกเขาก็บันทึกไว้ว่าที่ไหนสักแห่งนอก C # spec IIRC ไม่มีเอกสารประกอบในขณะที่คำถามนี้ถูกถาม
BoltClock

คำตอบ:


365

หากต้องการทำเครื่องหมายแลมบ์ดา 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);
}));

ฉันได้รับข้อผิดพลาดจาก Visual Studio ว่าไม่สนับสนุนวิธีการโมฆะ Async
Kevin Burton

@Kevin Burton: ใช่แล้วช่องว่าง async มักจะ จำกัด เฉพาะผู้จัดการเหตุการณ์ API ที่คุณใช้ไม่ใช่ async หรือมีเวอร์ชัน async โดยคาดว่าจะเป็น async Task lambda แทน
BoltClock

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.