Click or drag to resize

IDslCompilerContext Properties

The IDslCompilerContext type exposes the following members.

Properties
  Name Description
Public property Activity The Activity in Context.
Public property Case The Case in Context.
Public property FormData The Form ActualData in context.
Public property Input Workflow input object. If there is multiple objects, it references the first one.
Public property Inputs Workflow input objects.
Public property Output Using this property to get/set Output value object for the workflow in the current context.
Public property Code example 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#
var dataApi = ctx.Use<IDataApi>();
var @from = ctx.Parameters.Get<DateTime>("from");
var isActive = ctx.Parameters["isActive"];
var filter = FilterBuilder.Create().Eq("Active", isActive)
                                      .Gt("CreatedAt", @from)
                                      .Build();
var result = dataApi.Search(DataObjectApiQuery
                    .For("Employee")
                    .FilterBy(filter));
var employee  = result.Data.FirstOrDefault();
ctx.Output = employee;
Public property Code example 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#
var dataApi = ctx.Use<IDataApi>();
var employeeCode = ctx.RouteParameters.Get<string>("code");
var filter = FilterBuilder.Create().Eq("Active", true)
                                      .Eq("Code", employeeCode)
                                      .Build();
var result = dataApi.Search(DataObjectApiQuery
                    .For("Employee")
                    .Paging(0, 1)
                    .FilterBy(filter));
var employee  = result.Data.FirstOrDefault();
ctx.Output = employee;
Public property User The User in context.
Public property WorkerSite The WorkerSite in Context
Public property Workflow The Workflow in Context.
Public property WorkflowContext The context object.
Top
See Also