IDsl Compiler Context Properties
Properties
| Activity | The Activity in Context. |
| Case | The Case in Context. |
| FormData | The Form ActualData in context. |
| Input | Workflow input object. If there is multiple objects, it references the first one. |
| Inputs | Workflow input objects. |
| Output | Using this property to get/set Output value object for the workflow in the current context. |
| Parameters |
The parameters are parsed from the query string of the web trigger request
Example
Assume that a dynamic web trigger has the friendly uri: employee/info Then a request for that trigger is: employee/info?isActive=true&from=2020-07-27 C# |
| RouteParameters |
The route parameters are parsed from the url of the web trigger request
Example
Assume that a dynamic web trigger has the friendly uri: employee/info/{code} Then a request for that trigger is: employee/info/DEV-123 C# |
| User | The User in context. |
| WorkerSite | The WorkerSite in Context |
| Workflow | The Workflow in Context. |
| WorkflowContext | The context object. |