ReceiveActivity Class

Definition

Caution

The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*

Service activity that implements an operation defined by a Windows Communication Foundation (WCF) service contract.

public ref class ReceiveActivity sealed : System::Workflow::Activities::SequenceActivity, System::Workflow::Activities::IEventActivity, System::Workflow::ComponentModel::IActivityEventListener<System::Workflow::ComponentModel::QueueEventArgs ^>
[System.Drawing.ToolboxBitmap(typeof(System.Workflow.Activities.ReceiveActivity), "Design.Resources.ReceiveActivity.png")]
[System.Workflow.ComponentModel.Compiler.ActivityValidator(typeof(System.Workflow.Activities.ReceiveActivityValidator))]
[System.Serializable]
public sealed class ReceiveActivity : System.Workflow.Activities.SequenceActivity, System.Workflow.Activities.IEventActivity, System.Workflow.ComponentModel.IActivityEventListener<System.Workflow.ComponentModel.QueueEventArgs>
[System.Drawing.ToolboxBitmap(typeof(System.Workflow.Activities.ReceiveActivity), "Design.Resources.ReceiveActivity.png")]
[System.Workflow.ComponentModel.Compiler.ActivityValidator(typeof(System.Workflow.Activities.ReceiveActivityValidator))]
[System.Serializable]
[System.Obsolete("The System.Workflow.* types are deprecated.  Instead, please use the new types from System.Activities.*")]
public sealed class ReceiveActivity : System.Workflow.Activities.SequenceActivity, System.Workflow.Activities.IEventActivity, System.Workflow.ComponentModel.IActivityEventListener<System.Workflow.ComponentModel.QueueEventArgs>
[<System.Drawing.ToolboxBitmap(typeof(System.Workflow.Activities.ReceiveActivity), "Design.Resources.ReceiveActivity.png")>]
[<System.Workflow.ComponentModel.Compiler.ActivityValidator(typeof(System.Workflow.Activities.ReceiveActivityValidator))>]
[<System.Serializable>]
type ReceiveActivity = class
    inherit SequenceActivity
    interface IEventActivity
    interface IActivityEventListener<QueueEventArgs>
[<System.Drawing.ToolboxBitmap(typeof(System.Workflow.Activities.ReceiveActivity), "Design.Resources.ReceiveActivity.png")>]
[<System.Workflow.ComponentModel.Compiler.ActivityValidator(typeof(System.Workflow.Activities.ReceiveActivityValidator))>]
[<System.Serializable>]
[<System.Obsolete("The System.Workflow.* types are deprecated.  Instead, please use the new types from System.Activities.*")>]
type ReceiveActivity = class
    inherit SequenceActivity
    interface IEventActivity
    interface IActivityEventListener<QueueEventArgs>
Public NotInheritable Class ReceiveActivity
Inherits SequenceActivity
Implements IActivityEventListener(Of QueueEventArgs), IEventActivity
Inheritance
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.

The ReceiveActivity activity is used when a workflow implements an operation defined in a WCF service contract. The ReceiveActivity can implement an operation from an already defined service contract or can define the service contract and operation within the workflow itself. The latter is known as a workflow-first contract.

The ReceiveActivity activity supports a set of predefined message exchange patterns. These patterns include:

  • One-way receive

    The client that sends the message does not expect the service to send a response. The contract operation should have a void return type.

  • Receive request - Send response

    After a message is received and processed by the ReceiveActivity activity, a response is sent back to the client. When the contract operation has a void return type, an acknowledgement is sent back to the send activity.

  • Receive request - Send fault

    After a message is received and processed by the ReceiveActivity activity, a response or a fault is sent back to the client.

Note

To ensure that persistence performs properly and does not persist transient messages, make sure that child activities of the ReceiveActivity do not persist by themselves. This can occur if the child activities go idle when a persistence provider was created with UnloadOnIdle set to true, for instance.

Note

This activity is part of .NET Framework 3.5. For the equivalent activity in .NET Framework 4, see Receive.

Constructors

ReceiveActivity()

Initializes a new instance of the ReceiveActivity class.

ReceiveActivity(String)

Initializes a new instance of the ReceiveActivity class, initializing its Name property.

Fields

FaultMessageProperty

Represents the DependencyProperty that targets the FaultMessage property.

OperationValidationEvent

Represents the DependencyProperty that targets the OperationValidation event.

WorkflowServiceAttributesProperty

Represents the DependencyProperty that targets the ServiceOperationInfo property.

Properties

Activities

Gets the object representing the collection, ActivityCollection, of all child activities.

(Inherited from CompositeActivity)
CanCreateInstance

Gets or sets whether the operation causes a new workflow service instance to be created.

CanModifyActivities

Gets or sets a value which controls whether the individual activities within Activities can be modified.

(Inherited from CompositeActivity)
Context

Gets the context information for this activity.

ContextToken

Represents a token that can be used to specify the context that should be used to correlate the exchange between a ReceiveActivity activity and the client that the activity is communicating with.

Description

Gets or sets the user-defined description of the Activity.

(Inherited from Activity)
DesignMode

Gets the value that indicates whether this instance is in design or run-time mode.

(Inherited from DependencyObject)
Enabled

Gets or sets a value that indicates whether this instance is enabled for execution and validation.

(Inherited from Activity)
EnabledActivities

Gets the read-only collection that represents the subset of Activities that are enabled.

(Inherited from CompositeActivity)
ExecutionResult

Gets the ActivityExecutionResult of the last attempt to run this instance.

(Inherited from Activity)
ExecutionStatus

Gets the current ActivityExecutionStatus of this instance.

(Inherited from Activity)
FaultMessage

The exception that is returned when a receive activity completes execution.

IsDynamicActivity

Gets information about whether the activity is executing within the default ActivityExecutionContext of the workflow instance.

(Inherited from Activity)
Name

Gets or sets the name of this instance. This name must conform to the variable naming convention of the programming language that is being used in the Workflow project.

(Inherited from Activity)
ParameterBindings

Gets the collection of bindable parameters as found in the service's formal parameter list.

Parent

Gets the CompositeActivity that contains this Activity.

(Inherited from Activity)
ParentDependencyObject

Gets the parent DependencyObject in the DependencyObject graph.

(Inherited from DependencyObject)
QualifiedName

Gets the qualified name of the activity. Qualified activity names are always unique in a workflow instance.

(Inherited from Activity)
ServiceOperationInfo

Defines the contract and service operation that the ReceiveActivity activity implements.

Site

Gets or sets a reference to the Site component of the DependencyObject.

(Inherited from DependencyObject)
UserData

Gets an IDictionary that associates custom data with this class instance.

(Inherited from DependencyObject)
WorkflowInstanceId

Gets the Guid associated with the instance.

(Inherited from Activity)

Methods

AddHandler(DependencyProperty, Object)

Adds a handler for an event of a DependencyObject.

(Inherited from DependencyObject)
ApplyWorkflowChanges(WorkflowChanges)

Applies the WorkflowChanges manifest in the parameter to this instance.

(Inherited from CompositeActivity)
Cancel(ActivityExecutionContext)

Cancels the execution of the activity.

(Inherited from SequenceActivity)
Clone()

Creates a deep copy of the Activity.

(Inherited from Activity)
Dispose()

Releases all the resources used by the DependencyObject.

(Inherited from DependencyObject)
Dispose(Boolean)

Calls Dispose(Boolean) on this instance, and optionally calls Dispose() on all child activities of this instance.

(Inherited from CompositeActivity)
Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
Execute(ActivityExecutionContext)

Executes the activity.

(Inherited from SequenceActivity)
GetActivityByName(String)

Returns the instance of the Activity whose name is requested from the set of all activities running under the root activity of this instance, which is within the workflow.

(Inherited from Activity)
GetActivityByName(String, Boolean)

Returns the instance of the Activity whose name is requested from the set of all activities under the root the Activity of this instance if the second parameter is false and under the current Activity if the second parameter is true.

(Inherited from Activity)
GetBinding(DependencyProperty)

Provides access to the ActivityBind associated with the specific DependencyProperty.

(Inherited from DependencyObject)
GetBoundValue(ActivityBind, Type)

Retrieves the Object that is the subject of an ActivityBind.

(Inherited from DependencyObject)
GetContext(Activity, ContextToken)

Static method that returns context information given an activity instance and context token.

GetContext(Activity, String, String)

Static method that returns context information given an activity instance and context token.

GetDynamicActivities(Activity)

Returns an array that contains all of the currently executing instances of the specified activity.

(Inherited from CompositeActivity)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetInvocationList<T>(DependencyProperty)

Gets an array that contains the delegates for the specified DependencyProperty.

(Inherited from DependencyObject)
GetRootContext(Activity)

Static method that returns context information for the root context associated with a given activity instance. Context information is used for communication between a host application and the workflow service.

GetType()

Gets the Type of the current instance.

(Inherited from Object)
GetValue(DependencyProperty)

Provides access to the value of the designated DependencyProperty.

(Inherited from DependencyObject)
GetValueBase(DependencyProperty)

Provides access to the bound object of a DependencyProperty and bypasses the GetValue(DependencyProperty) override.

(Inherited from DependencyObject)
GetWorkflowServiceAttributes(Object)

Returns the WorkflowServiceAttributes attributes for the service implemented by the ReceiveActivity activity. These attributes include items like the AddressFilterMode, the ConfigurationName, the IncludeExceptionDetailInFaults, and whether to include exception details in any faults that are returned from the ReceiveActivity activity.

HandleFault(ActivityExecutionContext, Exception)

Called when an exception is raised within the context of the execution of this instance.

(Inherited from SequenceActivity)
Initialize(IServiceProvider)

Initializes all appropriate child activities of this instance and the specified IServiceProvider.

(Inherited from CompositeActivity)
InitializeProperties()

Performs initialization on dependency properties when overridden in a derived class.

(Inherited from DependencyObject)
Invoke<T>(EventHandler<T>, T)

Subscribes an EventHandler and invokes that delegate.

(Inherited from Activity)
Invoke<T>(IActivityEventListener<T>, T)

Subscribes an IActivityEventListener<T> and invokes that delegate.

(Inherited from Activity)
IsBindingSet(DependencyProperty)

Indicates whether the value of a DependencyProperty is set as a binding. See SetBinding(DependencyProperty, ActivityBind).

(Inherited from DependencyObject)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
MetaEquals(DependencyObject)

Determines whether the metaproperties of this DependencyObject equals the metaproperties of the parameterized DependencyObject.

(Inherited from DependencyObject)
OnActivityChangeAdd(ActivityExecutionContext, Activity)

Calls when an activity is added.

(Inherited from CompositeActivity)
OnActivityChangeRemove(ActivityExecutionContext, Activity)

Called when an activity is removed.

(Inherited from SequenceActivity)
OnActivityExecutionContextLoad(IServiceProvider)

Called by the workflow runtime engine every time the ActivityExecutionContext for this activity is loaded.

(Inherited from CompositeActivity)
OnActivityExecutionContextUnload(IServiceProvider)

Called by the workflow runtime engine every time the ActivityExecutionContext for this activity is unloaded.

(Inherited from CompositeActivity)
OnClosed(IServiceProvider)

Called by the workflow runtime as part of the activity's transition to the closed state.

(Inherited from Activity)
OnListChanged(ActivityCollectionChangeEventArgs)

Performs additional processing when the Activities property changes.

(Inherited from CompositeActivity)
OnListChanging(ActivityCollectionChangeEventArgs)

Event that occurs before a change being made to the underlying Activities.

(Inherited from CompositeActivity)
OnSequenceComplete(ActivityExecutionContext)

When overridden in a derived class, determines the action taken by the SequenceActivity when the activity has completed execution.

(Inherited from SequenceActivity)
OnWorkflowChangesCompleted(ActivityExecutionContext)

Called after changes have been made to the collection Activities of this instance.

(Inherited from SequenceActivity)
RaiseEvent(DependencyProperty, Object, EventArgs)

Raises an Event associated with the specified dependency property.

(Inherited from Activity)
RaiseGenericEvent<T>(DependencyProperty, Object, T)

Raises the event associated with the referenced DependencyProperty.

(Inherited from Activity)
RegisterForStatusChange(DependencyProperty, IActivityEventListener<ActivityExecutionStatusChangedEventArgs>)

Registers the specified DependencyProperty for the status change event.

(Inherited from Activity)
RemoveHandler(DependencyProperty, Object)

Removes an EventHandler from an associated DependencyProperty.

(Inherited from DependencyObject)
RemoveProperty(DependencyProperty)

Removes a DependencyProperty from the DependencyObject.

(Inherited from DependencyObject)
Save(Stream)

Writes the Activity to a Stream for persistence.

(Inherited from Activity)
Save(Stream, IFormatter)

Writes the Activity to a Stream for persistence using the custom IFormatter provided for serialization.

(Inherited from Activity)
SetBinding(DependencyProperty, ActivityBind)

Sets the ActivityBind for the specified DependencyProperty.

(Inherited from DependencyObject)
SetBoundValue(ActivityBind, Object)

Sets the value of the target ActivityBind.

(Inherited from DependencyObject)
SetReadOnlyPropertyValue(DependencyProperty, Object)

Sets the value of a DependencyProperty, which is read-only.

(Inherited from DependencyObject)
SetValue(DependencyProperty, Object)

Sets the value of the DependencyProperty to the object.

(Inherited from DependencyObject)
SetValueBase(DependencyProperty, Object)

Sets the value of the DependencyProperty to the specified Object, bypassing the SetValue(DependencyProperty, Object).

(Inherited from DependencyObject)
SetWorkflowServiceAttributes(Object, Object)

Sets the attributes for the service implemented by the ReceiveActivity activity. These attributes include items like the AddressFilterMode, the ConfigurationName, and whether to include exception details in any faults that are returned from the ReceiveActivity activity.

ToString()

Provides a string that represents this instance.

(Inherited from Activity)
TrackData(Object)

Informs the run-time tracking infrastructure of pending tracking information.

(Inherited from Activity)
TrackData(String, Object)

Informs the run-time tracking infrastructure of pending tracking information.

(Inherited from Activity)
Uninitialize(IServiceProvider)

Called by the workflow runtime engine when an activity transitions into the Closed state from the Initialized state.

(Inherited from CompositeActivity)
UnregisterForStatusChange(DependencyProperty, IActivityEventListener<ActivityExecutionStatusChangedEventArgs>)

Un-registers the specified DependencyProperty for the status change event.

(Inherited from Activity)

Events

Canceling

Occurs when the activity execution is canceled.

(Inherited from Activity)
Closed

Occurs when an Activity has completed execution.

(Inherited from Activity)
Compensating

Occurs when running a compensation method on the Activity.

(Inherited from Activity)
Executing

Occurs when the Activity is run.

(Inherited from Activity)
Faulting

Occurs when an exception is raised during the running of the instance.

(Inherited from Activity)
OperationValidation

Occurs when a message is received for an operation and validation is required.

StatusChanged

Occurs when the ActivityExecutionStatus of a running Activity changes.

(Inherited from Activity)

Explicit Interface Implementations

IActivityEventListener<ActivityExecutionStatusChangedEventArgs>.OnEvent(Object, ActivityExecutionStatusChangedEventArgs)

Defines the processing procedure when the subscribed-to event occurs.

(Inherited from SequenceActivity)
IActivityEventListener<QueueEventArgs>.OnEvent(Object, QueueEventArgs)

Defines the processing procedure when the subscribed-to event occurs.

IComponent.Disposed

Represents the method that handles the Disposed event of a component.

(Inherited from DependencyObject)
IEventActivity.QueueName

Gets the name of the WorkflowQueue on which the activity is waiting for data to arrive.

IEventActivity.Subscribe(ActivityExecutionContext, IActivityEventListener<QueueEventArgs>)

Creates the subscription of the ReceiveActivity activity to an event.

IEventActivity.Unsubscribe(ActivityExecutionContext, IActivityEventListener<QueueEventArgs>)

Cancels the subscription of a Activity to an event.

Applies to

See also