我正在使用Visual Studio 2017 Professional。
我的问题代码如下:
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Windows.UI.Notifications;
using System;
namespace SeleniumWebChat.Utilities
{
// This class handles Windows 'Toast' notifications that pop up when a new webchat/call is received
static class WinNotificationHandler
{
static async Task<bool> TaskCheckWinNotification(string notifType, string guest)
{
Windows.UI.Notifications.Management.UserNotificationListener listener = Windows.UI.Notifications.Management.UserNotificationListener.Current;
//only read notifications if we have access - this may need to be set in windows settings
if (listener.GetAccessStatus().ToString() == "Allowed")
{
// Get the windows toast notifications as a list
IReadOnlyList<UserNotification> notifs = await listener.GetNotificationsAsync(NotificationKinds.Toast);
//Console.Error.WriteLine("number of notifications found: " + notifs.Count());
}
return false;
}
}
}
问题出在这一行:
IReadOnlyList<UserNotification> notifs = await listener.GetNotificationsAsync(NotificationKinds.Toast);
哪个给出错误:
'IAsyncOperation<IReadOnlyList<UserNotification>>'
不包含'GetAwaiter'的定义,并且找不到扩展方法'GetAwaiter'接受类型为'IAsyncOperation<IReadOnlyList<UserNotification>>'
的第一个参数(您是否缺少'System'的using指令? )
从添加引用到:
要添加NuGet软件包:
要重新安装VS并尝试不同版本的SDK。
我真的不知道是什么导致了这个问题,对于任何正确方向的指针,我将不胜感激。
答案 0 :(得分:3)
您应该添加
using System.WindowsRuntimeSystemExtensions;
这是从System.Runtime.WindowsRuntime程序集中获取的,并拥有带有GetAwaiter扩展名的类。