TimerEventSubscription コンストラクター

定義

TimerEventSubscription クラスの新しいインスタンスを初期化します。

オーバーロード

名前 説明
TimerEventSubscription()

TimerEventSubscription クラスの新しいインスタンスを初期化します。

TimerEventSubscription(Guid, DateTime)

ワークフロー インスタンスの指定したGuidと指定した有効期限DateTimeを使用して、TimerEventSubscription クラスの新しいインスタンスを初期化します。

TimerEventSubscription(Guid, Guid, DateTime)

指定したサブスクリプション ID、ワークフロー インスタンスの指定したGuid、および指定した有効期限DateTimeを使用して、TimerEventSubscription クラスの新しいインスタンスを初期化します。

TimerEventSubscription()

TimerEventSubscription クラスの新しいインスタンスを初期化します。

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

適用対象

TimerEventSubscription(Guid, DateTime)

ワークフロー インスタンスの指定したGuidと指定した有効期限DateTimeを使用して、TimerEventSubscription クラスの新しいインスタンスを初期化します。

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

このサブスクリプションに関連付けられているタイマーの有効期限が切れると予想される世界協定時刻 (UTC) の時刻を表す DateTime

注釈

次の表に、 TimerEventSubscriptionのインスタンスの初期プロパティ値を示します。

財産 価値
QueueName SubscriptionIdのシステム提供のGuidの文字列形式。
SubscriptionId システム提供の Guid
WorkflowInstanceId workflowInstanceIdで指定されたワークフロー インスタンスのGuid
ExpiresAt DateTimeで指定されたexpiresAt

QueueName は、このコンストラクターによって SubscriptionId の文字列表現に初期化されます。

適用対象

TimerEventSubscription(Guid, Guid, DateTime)

指定したサブスクリプション ID、ワークフロー インスタンスの指定したGuid、および指定した有効期限DateTimeを使用して、TimerEventSubscription クラスの新しいインスタンスを初期化します。

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) の時刻を表す DateTime

注釈

次の表に、 TimerEventSubscriptionのインスタンスの初期プロパティ値を示します。

財産 価値
QueueName timerIdによって指定されたGuidの文字列形式。
SubscriptionId Guidで指定されたtimerId
WorkflowInstanceId workflowInstanceIdで指定されたワークフロー インスタンスのGuid
ExpiresAt DateTimeで指定されたexpiresAt

QueueName は、このコンストラクターによって timerId の文字列表現に初期化されます。

適用対象