-
WF runtime
public class WorkflowRuntime { public WorkflowRuntime();
-
WF Programming Model
Workflow is queue and scheduler.
public class ReadLine : Activity { private string text; public string Text { get { return text; } }
-
When workflow is persisted.
If a persistence service is loaded, the state of the workflow is persisted in the following situations:
-
Why ManualWorkflowSchedulerService should be used in asp.net enviroment
Why ManualWorkflowSchedulerService should be used in asp.net enviroment
-
What is a fake
A fake is a generic term that can be used to describe either a stub or a mock object (handwritten or otherwise), because they both look like the real object. Whether a fake is a stub or a mock depends how it's used in the current test. If it's used to check an interaction(asserted against), it's a mock object. Otherwise, it is a stub.