CorrelationToken.OwnerActivityName 属性

定义

获取或设置拥有相关标记的 Activity 的名称。

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

属性值

String

拥有相关标记的 Activity 的名称。

属性

示例

下面的示例演示如何访问相关标记对象的 OwnerActivityName 属性。 此示例摘自 CorrelatedLocalServiceWorkflow.designer.cs 文件的“相关的本地服务”SDK 示例。 有关详细信息,请参阅 相关本地服务示例

correlationtoken1.OwnerActivityName = "sequence2";
correlationtoken1.OwnerActivityName = "sequence2"

适用于