如何标记异步 lambda 表达式?
Posted
技术标签:
【中文标题】如何标记异步 lambda 表达式?【英文标题】:How do I mark a async lambda expression? 【发布时间】:2019-02-22 08:12:19 【问题描述】:我在这里有一些代码,想知道在哪里放置等待。我尝试了lamba =>和正常的方法,但没有成功。
private async void ContextMenuAbroad(object sender, RightTappedRoutedEventArgs args)
CheckBox ckbx = null;
if (sender is CheckBox)
ckbx = sender as CheckBox;
if (null == ckbx)
return;
string nameOfGroup = ckbx.Content.ToString();
var contextMenu = new PopupMenu();
contextMenu.Commands.Add(new UICommand("Edit this Group", (contextMenuCmd) =>
Frame.Navigate(typeof(LocationGroupCreator), nameOfGroup );
));
contextMenu.Commands.Add(new UICommand("Delete this Group", (contextMenuCmd) =>
SQLiteUtils rfd = new SQLiteUtils();
rfd.DeleteGroupAsync(nameOfGroup );
));
await contextMenu.ShowAsync(args.GetPosition(this));
我添加了一个等待,但是我需要在某处添加一个异步......但是在哪里?
Resharpers 检查抱怨:“由于没有等待此调用,因此在调用完成之前继续执行当前方法。考虑将 'await' 运算符应用于调用结果”
非常感谢任何帮助!
【问题讨论】:
can not await async lambda的可能重复 Where do I mark a lambda expression async?的可能重复 Stephen Cleary 编写了一份很棒的委托类型列表及其等待对应关系。 blog.stephencleary.com/2014/02/… 【参考方案1】:只需在参数列表前添加async
// Command to delete the current Group
contextMenu.Commands.Add(new UICommand("Delete this Group", async (contextMenuCmd) =>
SQLiteUtils rfd = new SQLiteUtils();
await rfd.DeleteGroupAsync(groupName);
));
【讨论】:
谢谢。这解决了它。我刚刚在最后一行添加了异步。请编辑 让我们祈祷吧,UICommand
需要一个异步委托。否则可以wreak havoc。【参考方案2】:
为了标记 lambda 异步,请使用以下语法:
async (contextMenuCmd) =>
SQLiteUtils rfd = new SQLiteUtils();
await rfd.DeleteGroupAsync(nameOfGroup );
【讨论】:
【参考方案3】:只需将其添加到括号前面,如下所示:
contextMenu.Commands.Add(new UICommand("Edit this Group", async (contextMenuCmd) =>
【讨论】:
以上是关于如何标记异步 lambda 表达式?的主要内容,如果未能解决你的问题,请参考以下文章