I want extract the dialogs "prompt and response" steps in a workflow activity.
I already found that code in a forum but... I dont understand how to get the steps
Type type = Type.GetType("Microsoft.Crm.Workflow.SynchronousRuntime.WorkflowContext, Microsoft.Crm.Workflow, Version=5.0.0.0"); type.GetProperty("ProxyTypesAssembly").SetValue(serviceFactory,
typeof(XrmServiceContext).Assembly, null); IOrganizationService service = serviceFactory.CreateOrganizationService(context.UserId); XrmServiceContext serviceContext = new XrmServiceContext(service);
Where's the dialog steps after this??
Thank you!
David Girard