Skip to content

Commit 0d5b252

Browse files
authored
(AzureCXP) fixes MicrosoftDocs/azure-docs#288882
Updated line no: 499 from "context.bindings.signalRGroupActions" to "context.bindings.signalROutput" and line no: 511 from "context.bindings.signalRGroupActions" to "context.bindings.signalROutput"
1 parent 85e8810 commit 0d5b252

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ The following example adds a user to a group.
496496

497497
```javascript
498498
module.exports = async function (context, req) {
499-
context.bindings.signalRGroupActions = [{
499+
context.bindings.signalROutput = [{
500500
"userId": req.query.userId,
501501
"groupName": "myGroup",
502502
"action": "add"
@@ -508,7 +508,7 @@ The following example removes a user from a group.
508508

509509
```javascript
510510
module.exports = async function (context, req) {
511-
context.bindings.signalRGroupActions = [{
511+
context.bindings.signalROutput = [{
512512
"userId": req.query.userId,
513513
"groupName": "myGroup",
514514
"action": "remove"

0 commit comments

Comments
 (0)