मुझे यह कोड मिला है:
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));
}
... कि रेस्पर के निरीक्षण ने इस बारे में शिकायत की, " क्योंकि यह कॉल प्रतीक्षित नहीं है, कॉल पूरा होने से पहले वर्तमान पद्धति का निष्पादन जारी है। कॉल के परिणाम के लिए " प्रतीक्षा "ऑपरेटर को लागू करने पर विचार करें " (लाइन पर) टिप्पणी)।
और इसलिए, मैंने इसे एक "प्रतीक्षा" के रूप में प्रस्तुत किया, लेकिन निश्चित रूप से, मुझे कहीं और भी "async" जोड़ने की आवश्यकता है - लेकिन कहाँ?
1
docs.microsoft.com/en-us/dotnet/csharp/programming-guide/…
—
samis
@ संसार: अच्छा, मुझे आश्चर्य है कि जब उन्होंने आखिरकार सी # कल्पना के बाहर कहीं प्रलेखित किया। IIRC, यह प्रश्न पूछे जाने के समय कोई दस्तावेज मौजूद नहीं था।
—
BoltClock