TimerEventSubscription 构造函数

定义

初始化 TimerEventSubscription 类的新实例。

重载

TimerEventSubscription()

初始化 TimerEventSubscription 类的新实例。

TimerEventSubscription(Guid, DateTime)

通过使用工作流实例的特定 TimerEventSubscription 和特定过期 Guid 初始化 DateTime 类的新实例。

TimerEventSubscription(Guid, Guid, DateTime)

通过使用工作流实例的指定的订阅 ID、指定的 TimerEventSubscription 和指定的过期 Guid 初始化 DateTime 类的新实例。

TimerEventSubscription()

初始化 TimerEventSubscription 类的新实例。

protected:
 TimerEventSubscription();
protected TimerEventSubscription ();
Protected Sub New ()

适用于

TimerEventSubscription(Guid, DateTime)

通过使用工作流实例的特定 TimerEventSubscription 和特定过期 Guid 初始化 DateTime 类的新实例。

public:
 TimerEventSubscription(Guid workflowInstanceId, DateTime expiresAt);
public TimerEventSubscription (Guid workflowInstanceId, DateTime expiresAt);
new System.Workflow.Runtime.TimerEventSubscription : Guid * DateTime -> System.Workflow.Runtime.TimerEventSubscription
Public Sub New (workflowInstanceId As Guid, expiresAt As DateTime)

参数

workflowInstanceId
Guid

与此订阅关联的工作流实例的 Guid

expiresAt
DateTime

一个 DateTime,以协调世界时 (UTC) 格式表示,与该订阅关联的计时器应在此时间过期。

注解

下表显示了 TimerEventSubscription 实例的初始属性值。

properties
QueueName 对应于 的系统提供的 的字符串表示形式。
SubscriptionId 系统提供的 Guid
WorkflowInstanceId 工作流实例的 Guid,由 workflowInstanceId 指定。
ExpiresAt DateTime 指定的 expiresAt

此构造函数将 QueueName 初始化为 SubscriptionId 的字符串表示形式。

适用于

TimerEventSubscription(Guid, Guid, DateTime)

通过使用工作流实例的指定的订阅 ID、指定的 TimerEventSubscription 和指定的过期 Guid 初始化 DateTime 类的新实例。

public:
 TimerEventSubscription(Guid timerId, Guid workflowInstanceId, DateTime expiresAt);
public TimerEventSubscription (Guid timerId, Guid workflowInstanceId, DateTime expiresAt);
new System.Workflow.Runtime.TimerEventSubscription : Guid * Guid * DateTime -> System.Workflow.Runtime.TimerEventSubscription
Public Sub New (timerId As Guid, workflowInstanceId As Guid, expiresAt As DateTime)

参数

timerId
Guid

此订阅的 Guid

workflowInstanceId
Guid

为其创建此订阅的工作流实例的 Guid

expiresAt
DateTime

一个,以协调世界时 (UTC) 格式表示,与该订阅关联的计时器应在此时间过期。

注解

下表显示了 TimerEventSubscription 实例的初始属性值。

properties
QueueName 指定的 的字符串表示形式。
SubscriptionId Guid 指定的 timerId
WorkflowInstanceId 工作流实例的 Guid,由 workflowInstanceId 指定。
ExpiresAt DateTime 指定的 expiresAt

此构造函数将 QueueName 初始化为 timerId 的字符串表示形式。

适用于