SqlTrackingWorkflowInstance.InvokingWorkflowInstanceId 属性

定义

获取或设置调用此工作流实例的工作流实例的 GuidGets or sets the Guid of the workflow instance that invoked this workflow instance.

public:
 property Guid InvokingWorkflowInstanceId { Guid get(); void set(Guid value); };
public Guid InvokingWorkflowInstanceId { get; set; }
member this.InvokingWorkflowInstanceId : Guid with get, set
Public Property InvokingWorkflowInstanceId As Guid

属性值

Guid

调用此工作流实例的工作流实例的 Guid,或者,如果此工作流实例未由另一个工作流实例调用,则为空 GuidThe Guid of the workflow instance that invoked this workflow instance or an empty Guid if this workflow instance was not invoked by another workflow instance.

注解

此属性的内容由包含在 SQL 数据库(由 SqlTrackingService 管理)中的此工作流实例的跟踪数据确定。The contents of this property are determined by the tracking data for this workflow instance contained in the SQL database managed by the SqlTrackingService. 此跟踪数据对应于运行时跟踪基础结构为跟踪事件发送的跟踪记录,这些事件由与此工作流实例关联的 TrackingProfile 中的跟踪点指定。This tracking data corresponds to tracking records that are sent by the run-time tracking infrastructure for tracking events that are specified by the track points in the TrackingProfile associated with this workflow instance.

适用于