WorkflowChanges Class

Definition

Caution

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

Represents a set of proposed changes to a running workflow instance.

public ref class WorkflowChanges sealed
public sealed class WorkflowChanges
[System.Obsolete("The System.Workflow.* types are deprecated.  Instead, please use the new types from System.Activities.*")]
public sealed class WorkflowChanges
type WorkflowChanges = class
[<System.Obsolete("The System.Workflow.* types are deprecated.  Instead, please use the new types from System.Activities.*")>]
type WorkflowChanges = class
Public NotInheritable Class WorkflowChanges
Inheritance
WorkflowChanges
Attributes

Examples

The following example demonstrates creating a new instance of a WorkflowChanges object. This example is from the Ordering State Machine SDK sample. For more information, see Ordering State Machine Sample.

// Create a new instance of the WorkflowChanges class for managing
// the in-memory changes to the workflow
WorkflowChanges changes = new WorkflowChanges(root);
' Create a new instance of the WorkflowChanges class for managing
' the in-memory changes to the workflow
Dim changes As New WorkflowChanges(root)

Remarks

Note

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

All proposed changes to a running workflow instance must be made using a WorkflowChanges object.

When a WorkflowChanges object is constructed in application code (outside the workflow instance), the Activity object that is passed to the constructor must be the object that is returned by the GetWorkflowDefinition method of the WorkflowInstance class.

Constructors

WorkflowChanges(Activity)

Initializes a new instance of the WorkflowChanges class.

Fields

ConditionProperty

Specifies the condition that must be satisfied to apply the WorkflowChanges.

Properties

TransientWorkflow

Returns a cloned activity tree to which changes can be made and then applied to the running workflow instance.

Methods

Equals(Object)

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

(Inherited from Object)
GetCondition(Object)

Gets the condition property on a dependency object.

GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
SetCondition(Object, Object)

Sets the condition property on a dependency object.

ToString()

Returns a string that represents the current object.

(Inherited from Object)
Validate()

Validates the current set of proposed changes that have been made to the activity tree represented by the TransientWorkflow property.

Applies to

See also