I have a client which receives messages over SignalR. It works fine but it is more like a broadcast. I would like to be able to send messages to a specific client. Is it possible to do that using Azure functions C#? Here is my sample of negotiate function.
[FunctionName("Negotiate")]
public static SignalRConnectionInfo NegotiateSignalR(
[HttpTrigger(AuthorizationLevel.Anonymous, "post")] HttpRequest req,
[SignalRConnectionInfo(HubName = "notifications")] SignalRConnectionInfo connectionInfo)
{
return connectionInfo;
}