c# - How to get the Activities of a Workflow from within the rehosted WorkflowDesigner -
in rehosted workflow, if have variable of type of workflowdesigner, , create workflow within (from ui), how list of activities later programmatically?
so input instance of workflowdesigner , desired output programmatically list of activities within workflow in c# of course.
i take book, url , hints. confused between modelservice , modelitem , sequence , activity , activitybuilder. have been looking @ msn documentation no avail.
thanks.
found answer : ienumerable<modelitem> xyz = modelservice.find(modelservice.root, typeof(activity));
Comments
Post a Comment