UserTrackingRecord 建構函式

定義

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

多載

名稱 Description
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

A DateTime 表示與追蹤紀錄相關的使用者事件的日期與時間。

eventOrder
Int32

與此追蹤紀錄相關的使用者事件在工作流程實例中發生的相對順序。

userDataKey
String

與此追蹤記錄使用者資料相關的鍵,或空參考(Nothing Visual Basic)。

userData
Object

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

適用於