ActivityCollection Class
.NET Framework 3.5
Models a strongly typed ICollection of type Activity.
Assembly: System.Workflow.ComponentModel (in System.Workflow.ComponentModel.dll)
The following example shows access of the ActivityCollection which is the member of a composite activity class containing all child activities. This code example is part of the Using Throw SDK Sample and is from the ThrowWorkflow.cs file. For more information, see Using the ThrowActivity Activity.
this.CanModifyActivities = true; System.Workflow.ComponentModel.ActivityBind activitybind1 = new System.Workflow.ComponentModel.ActivityBind(); this.throwActivity1 = new System.Workflow.ComponentModel.ThrowActivity(); activitybind1.Name = "ThrowWorkflow"; activitybind1.Path = "ThrownException"; // // throwActivity1 // this.throwActivity1.Name = "throwActivity1"; this.throwActivity1.SetBinding(System.Workflow.ComponentModel.ThrowActivity.FaultProperty, ((System.Workflow.ComponentModel.ActivityBind)(activitybind1))); // // ThrowWorkflow // this.Activities.Add(this.throwActivity1); this.Name = "ThrowWorkflow"; this.CanModifyActivities = false;
System.Object
System.Collections.Generic.List<Activity>
System.Workflow.ComponentModel.ActivityCollection
System.Collections.Generic.List<Activity>
System.Workflow.ComponentModel.ActivityCollection
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.
Note: