CompositeActivityDesigner.RemoveActivities Method

Definition

Removes all activities from the composite activity designer.

Overloads

RemoveActivities(ReadOnlyCollection<Activity>)

Removes a list of activities from the composite activity designer.

RemoveActivities(IServiceProvider, ReadOnlyCollection<Activity>, String)

Removes the list of activities from the designer using a transaction.

Remarks

Use RemoveActivities to remove activities from the composite activity.

RemoveActivities(ReadOnlyCollection<Activity>)

Removes a list of activities from the composite activity designer.

public:
 virtual void RemoveActivities(System::Collections::ObjectModel::ReadOnlyCollection<System::Workflow::ComponentModel::Activity ^> ^ activitiesToRemove);
public virtual void RemoveActivities (System.Collections.ObjectModel.ReadOnlyCollection<System.Workflow.ComponentModel.Activity> activitiesToRemove);
abstract member RemoveActivities : System.Collections.ObjectModel.ReadOnlyCollection<System.Workflow.ComponentModel.Activity> -> unit
override this.RemoveActivities : System.Collections.ObjectModel.ReadOnlyCollection<System.Workflow.ComponentModel.Activity> -> unit
Public Overridable Sub RemoveActivities (activitiesToRemove As ReadOnlyCollection(Of Activity))

Parameters

activitiesToRemove
ReadOnlyCollection<Activity>

A list of activities to remove from the designer.

Remarks

Removes the list of activities from the composite activity.

Applies to

RemoveActivities(IServiceProvider, ReadOnlyCollection<Activity>, String)

Removes the list of activities from the designer using a transaction.

public:
 static void RemoveActivities(IServiceProvider ^ serviceProvider, System::Collections::ObjectModel::ReadOnlyCollection<System::Workflow::ComponentModel::Activity ^> ^ activitiesToRemove, System::String ^ transactionDescription);
public static void RemoveActivities (IServiceProvider serviceProvider, System.Collections.ObjectModel.ReadOnlyCollection<System.Workflow.ComponentModel.Activity> activitiesToRemove, string transactionDescription);
static member RemoveActivities : IServiceProvider * System.Collections.ObjectModel.ReadOnlyCollection<System.Workflow.ComponentModel.Activity> * string -> unit
Public Shared Sub RemoveActivities (serviceProvider As IServiceProvider, activitiesToRemove As ReadOnlyCollection(Of Activity), transactionDescription As String)

Parameters

serviceProvider
IServiceProvider

The service provider associated with the designer.

activitiesToRemove
ReadOnlyCollection<Activity>

The list of activities to remove.

transactionDescription
String

The description of the transaction created.

Remarks

Use RemoveActivities to remove the specified list of activities from the composite activity within the specified transaction.

Applies to