NativeActivityAbortContext 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.
Represents the execution environment of an activity that is being aborted.
public ref class NativeActivityAbortContext sealed : System::Activities::ActivityContext
public sealed class NativeActivityAbortContext : System.Activities.ActivityContext
type NativeActivityAbortContext = class
inherit ActivityContext
Public NotInheritable Class NativeActivityAbortContext
Inherits ActivityContext
- Inheritance
Remarks
Custom activity authors that create activities that are derived from NativeActivity<TResult> can override Abort to take action in response to being aborted. For example, an activity that interacts with SqlCommand might want to call Cancel if the activity is being aborted.
Properties
ActivityInstanceId |
Gets the unique identifier of the currently executing activity instance. (Inherited from ActivityContext) |
DataContext |
Gets the data context of the currently executing activity. (Inherited from ActivityContext) |
Reason |
Gets an Exception that contains the reason for the activity being aborted. |
WorkflowInstanceId |
Gets the unique identifier of the currently executing workflow instance. (Inherited from ActivityContext) |
Methods
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetExtension<T>() |
Returns an extension of the specified type. (Inherited from ActivityContext) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetLocation<T>(LocationReference) |
Returns the typed location for the specified referenced location for the current activity context. (Inherited from ActivityContext) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
GetValue(Argument) |
Gets the value of the specified Argument. (Inherited from ActivityContext) |
GetValue(RuntimeArgument) |
Gets the value of the specified RuntimeArgument. (Inherited from ActivityContext) |
GetValue<T>(InArgument<T>) |
Gets the value of the specified InArgument<T>. (Inherited from ActivityContext) |
GetValue<T>(InOutArgument<T>) |
Gets the value of the specified InOutArgument<T>. (Inherited from ActivityContext) |
GetValue<T>(LocationReference) |
Gets the value at the specified LocationReference. (Inherited from ActivityContext) |
GetValue<T>(OutArgument<T>) |
Gets the value of the specified OutArgument<T>. (Inherited from ActivityContext) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
SetValue(Argument, Object) |
Assigns a value to the specified Argument. (Inherited from ActivityContext) |
SetValue<T>(InArgument<T>, T) |
Assigns a value to the specified InArgument<T>. (Inherited from ActivityContext) |
SetValue<T>(InOutArgument<T>, T) |
Assigns a value to the specified InOutArgument<T>. (Inherited from ActivityContext) |
SetValue<T>(LocationReference, T) |
Assigns a value to the specified LocationReference. (Inherited from ActivityContext) |
SetValue<T>(OutArgument<T>, T) |
Assigns a value to the specified OutArgument<T>. (Inherited from ActivityContext) |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |