Blog Posts
In this post, let’s have a look at how to send user Notifications using Azure Functions SignalR Service output binding. I already have an Azure SignalR Service and Azure Function setup. My client app is an Angular application. In my Azure Function, I have the Negotiate function as follows. public static class NegotiateFunction { [FunctionName(FunctionNames.Negotiate)] public static SignalRConnectionInfo Run( [HttpTrigger(AuthorizationLevel.Function, “get”, “post”, Route = null)] HttpRequest request, [SignalRConnectionInfo( HubName = “%SignalR_HubName%”, UserId = “{headers.x-application-user-id}”, ConnectionStringSetting = “SignalR_ConnectionString”)] SignalRConnectionInfo connectionInfo)… READ MORE