CorrelationScope.CorrelatesWith Property

Definition

Gets or sets the CorrelationHandle used by the child messaging activities.

public:
 property System::Activities::InArgument<System::ServiceModel::Activities::CorrelationHandle ^> ^ CorrelatesWith { System::Activities::InArgument<System::ServiceModel::Activities::CorrelationHandle ^> ^ get(); void set(System::Activities::InArgument<System::ServiceModel::Activities::CorrelationHandle ^> ^ value); };
public System.Activities.InArgument<System.ServiceModel.Activities.CorrelationHandle> CorrelatesWith { get; set; }
member this.CorrelatesWith : System.Activities.InArgument<System.ServiceModel.Activities.CorrelationHandle> with get, set
Public Property CorrelatesWith As InArgument(Of CorrelationHandle)

Property Value

The correlation handle used by the child messaging activities.

Remarks

This property is read-only at runtime. If the value is set at runtime, an InvalidOperationException is thrown.

The runtime uses the CorrelationHandle for correlation if it is present, otherwise the CorrelatesWith property of the messaging activity will be used. If both are absent, the ambient handle provided by CorrelationScope or the workflow service is used.

Applies to