ActivityBind.Path 属性

定义

获取或设置目标活动的成员的路径。 该值可以使用以点分隔的表示法来指示嵌套值的路径。 例如,路径“A.B.C”表示 ActivityBind 是一个名为“C”的字段或属性,该字段或属性是字段或属性“B”的成员,“B”又是字段或属性“A”的成员,而“A”是目标活动的成员。

public:
 property System::String ^ Path { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.TypeConverter(typeof(System.Workflow.ComponentModel.Design.ActivityBindPathTypeConverter))]
public string Path { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Workflow.ComponentModel.Design.ActivityBindPathTypeConverter))>]
member this.Path : string with get, set
Public Property Path As String

属性值

String

选定 Activity 的相关数据项的路径。

属性

例外

ActivityBind 未处于设计模式的情况下试图设置此值时发生。

示例

此示例演示如何创建和使用 ActivityBind,以及如何设置 NamePath

此代码示例摘自 ThrowActivity.cs 文件中的“引发活动 SDK”示例。 有关详细信息,请参阅 使用 ThrowActivity 活动

注解

注意

不能在运行时设置此属性。

适用于