How do I send a system generated signalr message from the Azure Function itself instead of from a trigger?
The following statement, outside of a trigger, does not generate an error but it does not reach the listeners.
return new SignalRMessageAction("newMessage") {Arguments = new[] { "Sample Message" }};
With InProcess Azure SignalR Function, I could, from inside c# code, send a message by adding a new SignalRMessage to IAsyncCollector
signlRMsg = new SignalRMessage{Target = "myTarget",Arguments = new[] { "Sample Message"}};
await _signalRMessages.AddAsync(signalRMessage);//IAsyncCollector<SignalRMessage>