Workflow Activity Input and Output Parameters and Data Types in MS CRM 2013/15/16
Microsoft Dynamics CRM supports two types of parameters for a workflow activity. Input Parameters Output Parameters Input Parameters The input parameter is annotated with the .NET attribute "Input" . DefaultAttribute DefaultAttribute class can be used to specify a default value (using "Default" attribute) for an input parameter. Bool [Input("Bool input")] [Output("Bool output")] [Default("True")] public InOutArgument<bool> Bool { get; set; } DateTime [Input("DateTime input")] [Output("DateTime output")] [Default("2013-07-09T02:54:00Z")] public InOutArgument<DateTime> DateTime { get; set; } Decimal [Input("Decimal input")] [Output("Decimal output")] [Default("20.75")] public InOutArgument<decimal> Decimal { get; set; } Double [Input("Double input")] [Output("Double
Comments
Post a Comment