람다 식을 비동기로 어디에 표시합니까?


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 : 예, 비동기 공백은 일반적으로 이벤트 핸들러로만 제한됩니다. 사용중인 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.