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/logic-apps/add-run-csharp-scripts.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ To perform custom integration tasks inline with your Standard workflow in Azure
21
21
22
22
This capability provides the following benefits:
23
23
24
-
- Write your own scripts to solve more complex integration problems without having to separately provision Azure Functions.
24
+
- Write your own scripts to solve more complex integration problems without having to use Azure Functions.
25
25
26
26
This benefit streamlines workflow development plus reduces the complexity and cost with managing more services.
27
27
@@ -41,7 +41,7 @@ This guide shows how to add the action in your workflow and add the C# script co
41
41
42
42
The following list describes some example scenarios where you can use a script helps with certain integration tasks:
43
43
44
-
-You have a payload where you want to parse and perform transformations or manipulations beyond built-in expressions and data operations capabilities. For example, you can use a script to return a modified schema for downstream processing.
44
+
-Parse and perform transformations or manipulations on a payload beyond the built-in expressions and data operations capabilities. For example, you can use a script to return a modified schema for downstream processing.
45
45
46
46
- Manage Azure resources such as virtual machines and start or step them, based on some business logic.
47
47
@@ -67,7 +67,7 @@ The following list describes some example scenarios where you can use a script h
67
67
68
68
| Name | Limit | Notes |
69
69
|------|-------|-------|
70
-
| Script run duration | 10 minutes | If you have scenarios that need longer durations, use the product feedback option to provide more information abour your needs. |
70
+
| Script run duration | 10 minutes | If you have scenarios that need longer durations, use the product feedback option to provide more information about your needs. |
71
71
| Output size | 100 MB | Output size depends on the output size limit for actions, which is generally 100 MB.
72
72
73
73
## Add the Execute CSharp Script Code action
@@ -179,7 +179,7 @@ The following list describes some example scenarios where you can use a script h
179
179
180
180
## Import namespaces
181
181
182
-
To import namespaces, do so with the **`using`** clause as usual. The following list includes an automatically imported namespaces, so they're optional for you to include in your script:
182
+
To import namespaces, do so with the **`using`** clause as usual. The following list includes automatically imported namespaces, so they're optional for you to include in your script:
The following list includes automatically assemblies that are add by the Azure Functions hosting environment:
213
+
The following list includes assemblies automatically added by the Azure Functions hosting environment:
214
214
215
215
```text
216
216
mscorlib
@@ -364,7 +364,7 @@ The following example shows a sample method call:
364
364
365
365
## Compilation errors
366
366
367
-
In this release, the web-based editor has limited IntelliSense support, which is still under improvement. Any compilation errors are detected when you save your workflow, and the Azure Logic Apps runtime compiles your script. These errors appear in your logic app's error logs.
367
+
In this release, the web-based editor includes limited IntelliSense support, which is still under improvement. Any compilation errors are detected when you save your workflow, and the Azure Logic Apps runtime compiles your script. These errors appear in your logic app's error logs.
368
368
369
369
## Runtime errors
370
370
@@ -374,7 +374,7 @@ If an error happens when your script executes, Azure Logic Apps performs these s
374
374
- Marks the script action as **Failed**.
375
375
- Provides an error object that represents the exception thrown from your script.
376
376
377
-
The followng example shows a sample error:
377
+
The following example shows a sample error:
378
378
379
379
**The function 'CSharp_MyLogicApp-InvalidAction_execute_csharp_script_code.csx' failed with the error 'The action 'nonexistent' does not exist in the workflow.' when executing. Please verify function code is valid.**
0 commit comments