Lue englanniksi Muokkaa

Jaa


WorkflowQueuingService Class

Definition

Caution

The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*

Provides the services for management of WorkflowQueue objects.

C#
public class WorkflowQueuingService
C#
[System.Obsolete("The System.Workflow.* types are deprecated.  Instead, please use the new types from System.Activities.*")]
public class WorkflowQueuingService
Inheritance
WorkflowQueuingService
Attributes

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

Remarks

Huomautus

This material discusses types and namespaces that are obsolete. For more information, see Deprecated Types in Windows Workflow Foundation 4.5.

WorkflowQueuingService provides methods that you can use to manage the workflow queues associated with a workflow instance.

Fields

PendingMessagesProperty

Contains the unconsumed items in the workflow queues associated with this WorkflowQueuingService.

Methods

CreateWorkflowQueue(IComparable, Boolean)

Creates a WorkflowQueue by using the specified name and transactional scope.

DeleteWorkflowQueue(IComparable)

Deletes the specified WorkflowQueue.

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
Exists(IComparable)

Tests for the existence of the specified WorkflowQueue.

GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
GetWorkflowQueue(IComparable)

Retrieves the specified WorkflowQueue.

MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

Tuote Versiot (Vanhentunut)
.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