Hi
I am working Workflow and use the code activity in our application. When we initialise the code with console.WriteLine then at this time Event runtime_workflowidled is show. What is the runtime_workflowidled Event. and define which type of namespace use for console.WriteLine.
Code :
static void runtime_WorkflowIdled(object sender, WorkflowEventArgs e)
{
Console.WriteLine("Workflow idled");
}
static void runtime_WorkflowCreated(object sender,
WorkflowEventArgs e)
{
Console.WriteLine("Workflow created");
Loading
VulpesPosted Nov 21, 2011, 2:25 PM
As their names suggest, the WorkflowCreated event fires when a worflow instance is created and the WorkflowIdled event fires when a workflow instance enters the idle state.
The Console.WriteLine method is a static method of the Console class which is found in the System namespace.