Azure SignalR binding spec

To setup Azure SignalR binding create a component of type . See this guide on how to create and apply a binding configuration.

Warning

This component supports output binding with the following operations:

  • create
  • group: Sends the message to a specific Azure SignalR group
  • user: Sends the message to a specific Azure SignalR user

Applications publishing to an Azure SignalR output binding should send a message with the following contract:

  1. "data": {
  2. "Arguments": [
  3. {
  4. "sender": "dapr",
  5. "text": "Message from dapr output binding"
  6. }
  7. },
  8. "group": "chat123"
  9. },
  10. "operation": "create"