TimerEventSubscription Class
Represents a subscription to a timer event.
Assembly: System.Workflow.Runtime (in System.Workflow.Runtime.dll)
The TimerEventSubscription type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | TimerEventSubscription() | Initializes a new instance of the TimerEventSubscription class. |
![]() | TimerEventSubscription(Guid, DateTime) | Initializes a new instance of the TimerEventSubscription class by using the specified Guid of a workflow instance and the specified expiration DateTime. |
![]() | TimerEventSubscription(Guid, Guid, DateTime) | Initializes a new instance of the TimerEventSubscription class by using the specified subscription Id, the specified Guid of a workflow instance, and the specified expiration DateTime. |
| Name | Description | |
|---|---|---|
![]() | ExpiresAt | Gets the expected expiration time of the timer associated with this subscription. |
![]() | QueueName | Represents the name of the WorkflowQueue that the WorkflowRuntime sends a message to when the timer subscription expires. |
![]() | SubscriptionId | Unique identifier that represents a timer event |
![]() | WorkflowInstanceId | Identifier of the workflow associated with the timer subscription |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
TimerEventSubscription objects are added to the timer queue associated with a workflow instance in order to send a message to a specific WorkflowQueue at a specified time. When the time specified by ExpiresAt is reached, the workflow runtime engine sends a message containing the SubscriptionId to the WorkflowQueue specified by QueueName. The timer queue associated with a workflow instance is contained in the TimerCollectionProperty. You can examine TimerCollectionProperty and the WorkflowQueueInfo objects returned by WorkflowInstance::GetWorkflowQueueData to determine which activities are waiting on a specific TimerEventSubscription. The DelayActivity and the SqlWorkflowPersistenceService both use timer event subscriptions to provide part of their functionality.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
