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-mobile-apps.md
+13-7Lines changed: 13 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ See the language-specific example:
38
38
*[C# script (.csx)](#input---c-script-example)
39
39
* JavaScript
40
40
41
-
### Input - C# scriptexample
41
+
#[C# script](#tab/input-csharp-example)
42
42
43
43
The following example shows a Mobile Apps input binding in a *function.json* file and a [C# script function](functions-reference-csharp.md) that uses the binding. The function is triggered by a queue message that has a record identifier. The function reads the specified record and modifies its `Text` property.
The following example shows a Mobile Apps input binding in a *function.json* file and a [JavaScript function](functions-reference-node.md) that uses the binding. The function is triggered by a queue message that has a record identifier. The function reads the specified record and modifies its `Text` property.
@@ -167,7 +168,7 @@ See the language-specific example:
167
168
*[C# script (.csx)](#output---c-script-example)
168
169
*[JavaScript](#output---javascript-example)
169
170
170
-
### Output - C# example
171
+
#[C#](#tab/output-csharp-example)
171
172
172
173
The following example shows a [C# function](functions-dotnet-class-library.md) that is triggered by a queue message and creates a record in a mobile app table.
173
174
@@ -182,7 +183,8 @@ public static object Run(
182
183
}
183
184
```
184
185
185
-
### Output - C# script example
186
+
# [C# script](#tab/output-csharp-script-example)
187
+
186
188
187
189
The following example shows a Mobile Apps output binding in a *function.json* file and a [C# script function](functions-reference-csharp.md) that uses the binding. The function is triggered by a queue message and creates a new record with hard-coded value for the `Text` property.
188
190
@@ -223,7 +225,8 @@ public static void Run(string myQueueItem, out object record)
223
225
}
224
226
```
225
227
226
-
### Output - JavaScript example
228
+
# [JavaScript](#tab/output-javascript-example)
229
+
227
230
228
231
The following example shows a Mobile Apps output binding in a *function.json* file and a [JavaScript function](functions-reference-node.md) that uses the binding. The function is triggered by a queue message and creates a new record with hard-coded value for the `Text` property.
In [C# class libraries](functions-dotnet-class-library.md), use the [MobileTable](https://github.com/Azure/azure-webjobs-sdk-extensions/blob/master/src/WebJobs.Extensions.MobileApps/MobileTableAttribute.cs) attribute.
271
274
272
275
For information about attribute properties that you can configure, see [Output - configuration](#output---configuration). Here's a `MobileTable` attribute example in a method signature:
0 commit comments