0

We have an Azure Function supporting a SignalR hub leveraging Azure SignalR Services to publish messages to connected signalR clients. We'd like to enable MessagePack protocol in the function but we could not find any documentation or guidelines to tell how to do it. Any ideas on how to approach this problem?

Arash
  • 3,628
  • 5
  • 46
  • 70

1 Answers1

1

Interestingly Message Pack protocol is initiated and used when the client app negotiates with the function. Further information can be found here.

Arash
  • 3,628
  • 5
  • 46
  • 70