Skip to content

Commit d5aef58

Browse files
authored
fix case
1 parent 5ed3ee5 commit d5aef58

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

articles/azure-functions/functions-bindings-signalr-service-input.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ The following table explains the properties of the `SignalRConnectionInfo` attri
317317

318318
| Attribute property |Description|
319319
|---------|----------------------|
320-
|**hubName**| Required. The hub name. |
320+
|**HubName**| Required. The hub name. |
321321
|**ConnectionStringSetting**| The name of the app setting that contains the SignalR Service connection string, which defaults to `AzureSignalRConnectionString`. |
322322
|**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. |
323323
|**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`
329329

330330
| Attribute property |Description|
331331
|---------|----------------------|
332-
|**hubName**| Required. The hub name. |
332+
|**HubName**| Required. The hub name. |
333333
|**ConnectionStringSetting**| The name of the app setting that contains the SignalR Service connection string, which defaults to `AzureSignalRConnectionString`. |
334334
|**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. |
335335
|**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
345345
|**direction**| Must be set to `in`.|
346346
|**name**| Variable name used in function code for connection info object. |
347347
|**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** . |
352352

353353
---
354354

@@ -364,10 +364,10 @@ The following table explains the supported settings for the `SignalRConnectionIn
364364
|---------|--------|
365365
|**name**| Variable name used in function code for connection info object. |
366366
|**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** . |
371371

372372
::: zone-end
373373
::: 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
380380
|**type**| Must be set to `signalRConnectionInfo`.|
381381
|**direction**| Must be set to `in`.|
382382
|**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** . |
387387

388388
::: zone-end
389389

0 commit comments

Comments
 (0)