อ่านในภาษาอังกฤษ แก้ไข

แชร์ผ่าน


CompositeActivity.CanModifyActivities Property

Definition

Gets or sets a value which controls whether the individual activities within Activities can be modified.

C#
protected internal bool CanModifyActivities { get; set; }

Property Value

true if the individual activities within Activities can be modified; otherwise false.

Examples

The following code shows how to create activities and add them as children to a composite activity and includes setting the CanModifyActivities permissive for this type.

This code example is part of the Throw SDK sample and is from the ThrowWorkFlow.cs file. For more information, see Throw Sample.

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

Applies to

ผลิตภัณฑ์ เวอร์ชัน
.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