WorkflowQueuingService Class
Provides the services for management of WorkflowQueue objects.
Assembly: System.Workflow.Runtime (in System.Workflow.Runtime.dll)
The following code example demonstrates a method, named CreateQueue, that initializes a WorkflowQueuingService object by calling the ActivityExecutionContext.GetService method. The code then uses the Exists method to determine if a WorkflowQueue with a specified name exists. If it does not exist, the code calls the CreateWorkflowQueue method; if it does the code calls the GetWorkflowQueue method.
This code example is part of the File Watcher Activity SDK Sample from the FileSystemEvent.cs file. For more information, see File System Watcher Activity.
private WorkflowQueue CreateQueue(ActivityExecutionContext context) { Console.WriteLine("CreateQueue"); WorkflowQueuingService qService = context.GetService<WorkflowQueuingService>(); if (!qService.Exists(this.QueueName)) { qService.CreateWorkflowQueue(this.QueueName, true); } return qService.GetWorkflowQueue(this.QueueName); }
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.