WorkflowApplication.Idle Property

Definition

Gets or sets the Action<T> that is invoked when the current workflow instance becomes idle.

C#
public Action<System.Activities.WorkflowApplicationIdleEventArgs> Idle { get; set; }

Property Value

An action that executes when a workflow instance becomes idle.

Examples

The following code example inspects the WorkflowApplicationIdleEventArgs passed into the Idle handler of a WorkflowApplication instance. In this example the workflow going idle has one Bookmark with a name of EnterGuess, owned by an activity named ReadInt. This code example is based off of How to: Run a Workflow, which is part of the Getting Started Tutorial [.NET Framework 4.5]. If the Idle handler in that step is modified to contain the code from this example, the following output is displayed.

Output
BookmarkName: EnterGuess - OwnerDisplayName: ReadInt  
C#
wfApp.Idle = delegate(WorkflowApplicationIdleEventArgs e)
{
    foreach (BookmarkInfo info in e.Bookmarks)
    {
        Console.WriteLine("BookmarkName: {0} - OwnerDisplayName: {1}",
            info.BookmarkName, info.OwnerDisplayName);
    }

    idleEvent.Set();
};

Applies to

Product Versions
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1