Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 624 Bytes

File metadata and controls

22 lines (19 loc) · 624 Bytes
author Y-Sindo
ms.service azure-functions
ms.topic include
ms.date 03/20/2024
ms.author zityang
ms.custom sfi-ropc-nochange

The following example shows a SignalR connection info input binding in a function.json file and a function that uses the binding to return the connection information.

Here's binding data for the example in the function.json file:

{
    "type": "signalRConnectionInfo",
    "name": "connectionInfo",
    "hubName": "hubName1",
    "connectionStringSetting": "<name of setting containing SignalR Service connection string>",
    "direction": "in"
}