共用方式為


UserTrackingRecord 建構函式

定義

初始化 UserTrackingRecord 類別的新執行個體。

多載

UserTrackingRecord()

初始化 UserTrackingRecord 類別的新執行個體。

UserTrackingRecord(Type, String, Guid, Guid, DateTime, Int32, String, Object)

使用指定的參數初始化 UserTrackingRecord 類別的新執行個體。

備註

執行階段追蹤基礎結構會呼叫這個建構函式。

UserTrackingRecord()

初始化 UserTrackingRecord 類別的新執行個體。

public:
 UserTrackingRecord();
public UserTrackingRecord ();
Public Sub New ()

備註

執行階段追蹤基礎結構會呼叫這個建構函式。

適用於

UserTrackingRecord(Type, String, Guid, Guid, DateTime, Int32, String, Object)

使用指定的參數初始化 UserTrackingRecord 類別的新執行個體。

public:
 UserTrackingRecord(Type ^ activityType, System::String ^ qualifiedName, Guid contextGuid, Guid parentContextGuid, DateTime eventDateTime, int eventOrder, System::String ^ userDataKey, System::Object ^ userData);
public UserTrackingRecord (Type activityType, string qualifiedName, Guid contextGuid, Guid parentContextGuid, DateTime eventDateTime, int eventOrder, string userDataKey, object userData);
new System.Workflow.Runtime.Tracking.UserTrackingRecord : Type * string * Guid * Guid * DateTime * int * string * obj -> System.Workflow.Runtime.Tracking.UserTrackingRecord
Public Sub New (activityType As Type, qualifiedName As String, contextGuid As Guid, parentContextGuid As Guid, eventDateTime As DateTime, eventOrder As Integer, userDataKey As String, userData As Object)

參數

activityType
Type

與使用者事件關聯之活動的 Type

qualifiedName
String

與使用者事件關聯之活動的 QualifiedName

contextGuid
Guid

數字,識別與使用者事件關聯之活動的 ActivityExecutionContext

parentContextGuid
Guid

數字,識別與使用者事件關聯之活動的父活動 ActivityExecutionContext

eventDateTime
DateTime

DateTime,表示與追蹤記錄關聯之使用者事件的日期和時間。

eventOrder
Int32

與此追蹤記錄關聯的使用者事件在工作流程執行個體中的相對順序。

userDataKey
String

與此追蹤記錄的使用者資料關聯的索引鍵,或 null 參考 (在 Visual Basic 中為 Nothing)。

userData
Object

與使用者事件關聯的使用者資料。

適用於