WorkflowQueuingService.GetWorkflowQueue(IComparable) Method

Definition

Retrieves the specified WorkflowQueue.

C#
public System.Workflow.Runtime.WorkflowQueue GetWorkflowQueue(IComparable queueName);

Parameters

queueName
IComparable

The name of the WorkflowQueue to retrieve.

Returns

A WorkflowQueue object.

Exceptions

queueName is a null reference (Nothing in Visual Basic).

The specified WorkflowQueue was not found.

Examples

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.

C#
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);
}

Applies to

Tuote Versiot
.NET Framework 3.0, 3.5, 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

See also