Skip to content

Commit a836c79

Browse files
committed
Add tabs for other langugages
1 parent 84c4c20 commit a836c79

File tree

1 file changed

+40
-6
lines changed

1 file changed

+40
-6
lines changed

articles/azure-functions/functions-bindings-event-grid.md

+40-6
Original file line numberDiff line numberDiff line change
@@ -684,6 +684,18 @@ public static void Run(TimerInfo myTimer, ICollector<EventGridEvent> outputEvent
684684
}
685685
```
686686

687+
# [JavaScript](#tab/javascript)
688+
689+
The Event Grid output binding is not available for JavaScript.
690+
691+
# [Python](#tab/python)
692+
693+
The Event Grid output binding is not available for JavaScript.
694+
695+
# [Java](#tab/java)
696+
697+
The Event Grid output binding is not available for JavaScript.
698+
687699
---
688700

689701
## Output - attributes and annotations
@@ -705,6 +717,22 @@ public static string Run([TimerTrigger("0 */5 * * * *")] TimerInfo myTimer, ILog
705717

706718
For a complete example, see [Output - C# example](#output).
707719

720+
# [C# Script](#tab/csharp-script)
721+
722+
Attributes are not supported by C# Script.
723+
724+
# [JavaScript](#tab/javascript)
725+
726+
The Event Grid output binding is not available for JavaScript.
727+
728+
# [Python](#tab/python)
729+
730+
The Event Grid output binding is not available for JavaScript.
731+
732+
# [Java](#tab/java)
733+
734+
The Event Grid output binding is not available for JavaScript.
735+
708736
---
709737

710738
## Output - configuration
@@ -724,12 +752,6 @@ The following table explains the binding configuration properties that you set i
724752
> [!IMPORTANT]
725753
> Ensure that you set the value of the `TopicEndpointUri` configuration property to the name of an app setting that contains the URI of the custom topic. Do not specify the name of the custom topic directly in this property.
726754
727-
# [C# Script](#tab/csharp-script)
728-
729-
Attributes are not supported by C# Script.
730-
731-
---
732-
733755
## Output - usage
734756

735757
# [C#](#tab/csharp)
@@ -742,6 +764,18 @@ Send messages by using a method parameter such as `out EventGridEvent paramName`
742764
Send messages by using a method parameter such as `out EventGridEvent paramName`. In C# script, `paramName` is the value specified in the `name` property of *function.json*. To write multiple messages, you can use `ICollector<EventGridEvent>` or
743765
`IAsyncCollector<EventGridEvent>` in place of `out EventGridEvent`.
744766

767+
# [JavaScript](#tab/javascript)
768+
769+
The Event Grid output binding is not available for JavaScript.
770+
771+
# [Python](#tab/python)
772+
773+
The Event Grid output binding is not available for JavaScript.
774+
775+
# [Java](#tab/java)
776+
777+
The Event Grid output binding is not available for JavaScript.
778+
745779
---
746780

747781
## Next steps

0 commit comments

Comments
 (0)