我设计了一个工作流服务 (xamlx),我想跟踪它,例如使用 SqlTrackingService。由于该过程是在 xamlx 文件中定义的,因此我无法添加
WorkflowRuntime wRuntime = new WorkflowRuntime();
wRuntime.AddService(new SqlTrackingService(connectionString));
wRuntime.StartRuntime();
因为没有地方放它...我怎么能这样做?
我设计了一个工作流服务 (xamlx),我想跟踪它,例如使用 SqlTrackingService。由于该过程是在 xamlx 文件中定义的,因此我无法添加
WorkflowRuntime wRuntime = new WorkflowRuntime();
wRuntime.AddService(new SqlTrackingService(connectionString));
wRuntime.StartRuntime();
因为没有地方放它...我怎么能这样做?