Activity.Name Property
.NET Framework 4
Gets or sets the name of this instance. This name must conform to the variable naming convention of the programming language that is being used in the Workflow project.
Assembly: System.Workflow.ComponentModel (in System.Workflow.ComponentModel.dll)
The following code shows how to create activities and add them as children to a composite activity and set the value for Name.
This code example is part of the Throw SDK sample and is from the ThrowWorkFlow.cs file. For more information, seeThrow Sample.
Me.CanModifyActivities = True Dim activitybind1 As New System.Workflow.ComponentModel.ActivityBind() Me.throwActivity1 = New System.Workflow.ComponentModel.ThrowActivity() activitybind1.Name = "ThrowWorkflow" activitybind1.Path = "ThrownException" ' ' throwActivity1 ' Me.throwActivity1.Name = "throwActivity1" Me.throwActivity1.SetBinding(System.Workflow.ComponentModel.ThrowActivity.FaultProperty, activitybind1) ' ' ThrowWorkflow ' Me.Activities.Add(Me.throwActivity1) Me.Name = "ThrowWorkflow" Me.CanModifyActivities = False
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.