我对使用Webjob SDK还是很陌生,我正在尝试将通知与带有SDK 3的Webjob推送到NotificationHub。
我一直在尝试使用Microsoft.Azure.Webjobs.Extensions.NotificationHub。它似乎无法与Webjob SDK 3一起使用,所以我改用了SDK 2。
Programme.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Azure.WebJobs;
namespace WJNotificationHub
{
class Program
{
static void Main()
{
var config = new JobHostConfiguration();
if (config.IsDevelopment)
{
config.UseDevelopmentSettings();
}
config.UseNotificationHubs();
var host = new JobHost(config);
host.RunAndBlock();
}
}
}
Functions.cs
using System.IO;
using Microsoft.Azure.NotificationHubs;
using Microsoft.Azure.WebJobs;
using Newtonsoft.Json;
namespace WJNotificationHub
{
public class Functions
{
public static void ProcessQueueMessage([QueueTrigger("queue")] string message, TextWriter log, [NotificationHub] out Notification notification)
{
log.WriteLine(message);
notification = new GcmNotification(message.ToGcmPayload());
}
}
public static class PlatformNotificationsExtensions
{
public static string ToGcmPayload(this string message)
{
var gcmPayloadModel = new
{
data = new
{
message = message
}
};
return JsonConvert.SerializeObject(gcmPayloadModel);
}
}
}
使用此代码,我有以下异常:
Exception while executing function: Functions.ProcessQueueMessage
Microsoft.Azure.WebJobs.Host.FunctionInvocationException : Exception while executing function: Functions.ProcessQueueMessage ---> System.InvalidOperationException : Exception binding parameter 'notification' ---> System.NullReferenceException : La référence d'objet n'est pas définie à une instance d'un objet.
还有没有办法使用SDK 3?
答案 0 :(得分:0)
System.InvalidOperationException:异常绑定参数'notification'
更新Azure Function and Web Jobs Tools
版本并重新启动。
还有没有办法使用SDK 3?
简而言之否。
Notification Hub仅支持1.x
,而Webjob SDK 3支持.NETStandard 2.0
。
有关代码,您可以参考此article。