मैं लैंबडा एक्सप्रेशन को एस्किंक कहां चिह्नित करता हूं?


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

... कि रेस्पर के निरीक्षण ने इस बारे में शिकायत की, " क्योंकि यह कॉल प्रतीक्षित नहीं है, कॉल पूरा होने से पहले वर्तमान पद्धति का निष्पादन जारी है। कॉल के परिणाम के लिए " प्रतीक्षा "ऑपरेटर को लागू करने पर विचार करें " (लाइन पर) टिप्पणी)।

और इसलिए, मैंने इसे एक "प्रतीक्षा" के रूप में प्रस्तुत किया, लेकिन निश्चित रूप से, मुझे कहीं और भी "async" जोड़ने की आवश्यकता है - लेकिन कहाँ?



1
@ संसार: अच्छा, मुझे आश्चर्य है कि जब उन्होंने आखिरकार सी # कल्पना के बाहर कहीं प्रलेखित किया। 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 शून्य विधियाँ समर्थित नहीं हैं।
केविन बर्टन

@ केविन बर्टन: हाँ, async voids आमतौर पर केवल ईवेंट हैंडलर तक ही सीमित हैं। आपके द्वारा उपयोग किया जा रहा एपीआई या तो async नहीं है या उसके पास async टास्क लैंबडा की अपेक्षा एक async संस्करण है।
BoltClock

22

और अनाम अभिव्यक्ति का उपयोग करने वाले लोगों के लिए:

await Task.Run(async () =>
{
   SQLLiteUtils slu = new SQLiteUtils();
   await slu.DeleteGroupAsync(groupname);
});
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.