UserTrackingRecord 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 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)
参数
- qualifiedName
- String
与用户事件关联的活动的 QualifiedName。
- contextGuid
- Guid
一个数字,该数字标识与用户事件关联的活动的 ActivityExecutionContext。
- parentContextGuid
- Guid
一个数字,该数字标识与用户事件关联的父活动的 ActivityExecutionContext。
- eventOrder
- Int32
与此跟踪记录关联的用户事件在工作流实例中发生的相对顺序。
- userDataKey
- String
一个与此跟踪记录的用户数据关联的键,或空引用(在 Visual Basic 中为 Nothing
)。
- userData
- Object
与用户事件关联的用户数据。