You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-bindings-signalr-service-input.md
+14-14Lines changed: 14 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -317,7 +317,7 @@ The following table explains the properties of the `SignalRConnectionInfo` attri
317
317
318
318
| Attribute property |Description|
319
319
|---------|----------------------|
320
-
|**hubName**| Required. The hub name. |
320
+
|**HubName**| Required. The hub name. |
321
321
|**ConnectionStringSetting**| The name of the app setting that contains the SignalR Service connection string, which defaults to `AzureSignalRConnectionString`. |
322
322
|**UserId**| Optional. The user identifier of a SignalR connection. You can use a [binding expression](#binding-expressions-for-http-trigger) to bind the value to an HTTP request header or query. |
323
323
|**IdToken**| Optional. A JWT token whose claims will be added to the user claims. It should be used together with **ClaimTypeList**. You can use a [binding expression](#binding-expressions-for-http-trigger) to bind the value to an HTTP request header or query. |
@@ -329,7 +329,7 @@ The following table explains the properties of the `SignalRConnectionInfoInput`
329
329
330
330
| Attribute property |Description|
331
331
|---------|----------------------|
332
-
|**hubName**| Required. The hub name. |
332
+
|**HubName**| Required. The hub name. |
333
333
|**ConnectionStringSetting**| The name of the app setting that contains the SignalR Service connection string, which defaults to `AzureSignalRConnectionString`. |
334
334
|**UserId**| Optional. The user identifier of a SignalR connection. You can use a [binding expression](#binding-expressions-for-http-trigger) to bind the value to an HTTP request header or query. |
335
335
|**IdToken**| Optional. A JWT token whose claims will be added to the user claims. It should be used together with **ClaimTypeList**. You can use a [binding expression](#binding-expressions-for-http-trigger) to bind the value to an HTTP request header or query. |
@@ -345,10 +345,10 @@ The following table explains the binding configuration properties that you set i
345
345
|**direction**| Must be set to `in`.|
346
346
|**name**| Variable name used in function code for connection info object. |
347
347
|**hubName**| Required. The hub name. |
348
-
|**ConnectionStringSetting**| The name of the app setting that contains the SignalR Service connection string, which defaults to `AzureSignalRConnectionString`. |
349
-
|**UserId**| Optional. The user identifier of a SignalR connection. You can use a [binding expression](#binding-expressions-for-http-trigger) to bind the value to an HTTP request header or query. |
350
-
|**IdToken**| Optional. A JWT token whose claims will be added to the user claims. It should be used together with **ClaimTypeList**. You can use a [binding expression](#binding-expressions-for-http-trigger) to bind the value to an HTTP request header or query. |
351
-
|**ClaimTypeList**| Optional. A list of claim types, which filter the claims in **IdToken** . |
348
+
|**connectionStringSetting**| The name of the app setting that contains the SignalR Service connection string, which defaults to `AzureSignalRConnectionString`. |
349
+
|**userId**| Optional. The user identifier of a SignalR connection. You can use a [binding expression](#binding-expressions-for-http-trigger) to bind the value to an HTTP request header or query. |
350
+
|**idToken**| Optional. A JWT token whose claims will be added to the user claims. It should be used together with **claimTypeList**. You can use a [binding expression](#binding-expressions-for-http-trigger) to bind the value to an HTTP request header or query. |
351
+
|**claimTypeList**| Optional. A list of claim types, which filter the claims in **idToken** . |
352
352
353
353
---
354
354
@@ -364,10 +364,10 @@ The following table explains the supported settings for the `SignalRConnectionIn
364
364
|---------|--------|
365
365
|**name**| Variable name used in function code for connection info object. |
366
366
|**hubName**| Required. The hub name. |
367
-
|**ConnectionStringSetting**| The name of the app setting that contains the SignalR Service connection string, which defaults to `AzureSignalRConnectionString`. |
368
-
|**UserId**| Optional. The user identifier of a SignalR connection. You can use a [binding expression](#binding-expressions-for-http-trigger) to bind the value to an HTTP request header or query. |
369
-
|**IdToken**| Optional. A JWT token whose claims will be added to the user claims. It should be used together with **ClaimTypeList**. You can use a [binding expression](#binding-expressions-for-http-trigger) to bind the value to an HTTP request header or query. |
370
-
|**ClaimTypeList**| Optional. A list of claim types, which filter the claims in **IdToken** . |
367
+
|**connectionStringSetting**| The name of the app setting that contains the SignalR Service connection string, which defaults to `AzureSignalRConnectionString`. |
368
+
|**userId**| Optional. The user identifier of a SignalR connection. You can use a [binding expression](#binding-expressions-for-http-trigger) to bind the value to an HTTP request header or query. |
369
+
|**idToken**| Optional. A JWT token whose claims will be added to the user claims. It should be used together with **claimTypeList**. You can use a [binding expression](#binding-expressions-for-http-trigger) to bind the value to an HTTP request header or query. |
370
+
|**claimTypeList**| Optional. A list of claim types, which filter the claims in **idToken** . |
371
371
372
372
::: zone-end
373
373
::: zone pivot="programming-language-javascript,programming-language-powershell,programming-language-python"
@@ -380,10 +380,10 @@ The following table explains the binding configuration properties that you set i
380
380
|**type**| Must be set to `signalRConnectionInfo`.|
381
381
|**direction**| Must be set to `in`.|
382
382
|**hubName**| Required. The hub name. |
383
-
|**ConnectionStringSetting**| The name of the app setting that contains the SignalR Service connection string, which defaults to `AzureSignalRConnectionString`. |
384
-
|**UserId**| Optional. The user identifier of a SignalR connection. You can use a [binding expression](#binding-expressions-for-http-trigger) to bind the value to an HTTP request header or query. |
385
-
|**IdToken**| Optional. A JWT token whose claims will be added to the user claims. It should be used together with **ClaimTypeList**. You can use a [binding expression](#binding-expressions-for-http-trigger) to bind the value to an HTTP request header or query. |
386
-
|**ClaimTypeList**| Optional. A list of claim types, which filter the claims in **IdToken** . |
383
+
|**connectionStringSetting**| The name of the app setting that contains the SignalR Service connection string, which defaults to `AzureSignalRConnectionString`. |
384
+
|**userId**| Optional. The user identifier of a SignalR connection. You can use a [binding expression](#binding-expressions-for-http-trigger) to bind the value to an HTTP request header or query. |
385
+
|**idToken**| Optional. A JWT token whose claims will be added to the user claims. It should be used together with **claimTypeList**. You can use a [binding expression](#binding-expressions-for-http-trigger) to bind the value to an HTTP request header or query. |
386
+
|**claimTypeList**| Optional. A list of claim types, which filter the claims in **idToken** . |
0 commit comments