ActivityExecutionContext Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Caution
The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*
Represents the execution environment of an Activity. This class cannot be inherited.
public ref class ActivityExecutionContext sealed : IDisposable, IServiceProvider
public sealed class ActivityExecutionContext : IDisposable, IServiceProvider
[System.Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")]
public sealed class ActivityExecutionContext : IDisposable, IServiceProvider
type ActivityExecutionContext = class
interface IServiceProvider
interface IDisposable
[<System.Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")>]
type ActivityExecutionContext = class
interface IServiceProvider
interface IDisposable
Public NotInheritable Class ActivityExecutionContext
Implements IDisposable, IServiceProvider
- Inheritance
-
ActivityExecutionContext
- Attributes
- Implements
Remarks
Note
This material discusses types and namespaces that are obsolete. For more information, see Deprecated Types in Windows Workflow Foundation 4.5.
Represents the execution environment of an Activity. This class selectively exposes workflow runtime capabilities and services to individual activities. This class cannot be inherited.
For more information, see Understanding the Activity Execution Context.
Fields
CurrentExceptionProperty |
Represents an exception that has occurred during the execution of the workflow instance. This property has a value only when an activity is in the faulting state. |
Properties
Activity |
Gets the Activity that currently executes within this execution context. |
ContextGuid |
Gets the |
ExecutionContextManager |
Gets the ActivityExecutionContextManager associated with this instance. |
Methods
CancelActivity(Activity) |
Called by a composite activity to schedule the cancellation of a child activity. The workflow runtime disallows cancellation of a child activity that is not in the Executing state. |
CloseActivity() |
Indicates to the workflow runtime that the currently executing activity should transition to the Closed state. |
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
ExecuteActivity(Activity) |
Called by a composite activity to schedule the execution of a child activity. The workflow runtime disallows execution of a child activity that is not in the initialized state. |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetService(Type) |
Returns a service of the specified type. |
GetService<T>() |
Returns a service provider of the specified Type. |
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) |
TrackData(Object) |
Invokes the track method for the associated Activity. |
TrackData(String, Object) |
Invokes the track method for the associated Activity. |
Explicit Interface Implementations
IDisposable.Dispose() |
Releases all resources used by the ActivityExecutionContext. |