CorrelationMessageProperty Constructors

Definition

Initializes a new instance of the CorrelationMessageProperty class.

Overloads

CorrelationMessageProperty(InstanceKey, IEnumerable<InstanceKey>)

Initializes a new instance of the CorrelationMessageProperty class using the specified correlation keys.

CorrelationMessageProperty(InstanceKey, IEnumerable<InstanceKey>, IEnumerable<InstanceKey>)

Initializes a new instance of the CorrelationMessageProperty class.

CorrelationMessageProperty(InstanceKey, IEnumerable<InstanceKey>)

Initializes a new instance of the CorrelationMessageProperty class using the specified correlation keys.

public:
 CorrelationMessageProperty(System::Runtime::DurableInstancing::InstanceKey ^ correlationKey, System::Collections::Generic::IEnumerable<System::Runtime::DurableInstancing::InstanceKey ^> ^ additionalKeys);
public CorrelationMessageProperty (System.Runtime.DurableInstancing.InstanceKey correlationKey, System.Collections.Generic.IEnumerable<System.Runtime.DurableInstancing.InstanceKey> additionalKeys);
new System.ServiceModel.Channels.CorrelationMessageProperty : System.Runtime.DurableInstancing.InstanceKey * seq<System.Runtime.DurableInstancing.InstanceKey> -> System.ServiceModel.Channels.CorrelationMessageProperty
Public Sub New (correlationKey As InstanceKey, additionalKeys As IEnumerable(Of InstanceKey))

Parameters

correlationKey
InstanceKey

The instance key for the primary correlation.

additionalKeys
IEnumerable<InstanceKey>

Instance keys for additional correlations.

Applies to

CorrelationMessageProperty(InstanceKey, IEnumerable<InstanceKey>, IEnumerable<InstanceKey>)

Initializes a new instance of the CorrelationMessageProperty class.

public:
 CorrelationMessageProperty(System::Runtime::DurableInstancing::InstanceKey ^ correlationKey, System::Collections::Generic::IEnumerable<System::Runtime::DurableInstancing::InstanceKey ^> ^ additionalKeys, System::Collections::Generic::IEnumerable<System::Runtime::DurableInstancing::InstanceKey ^> ^ transientCorrelations);
public CorrelationMessageProperty (System.Runtime.DurableInstancing.InstanceKey correlationKey, System.Collections.Generic.IEnumerable<System.Runtime.DurableInstancing.InstanceKey> additionalKeys, System.Collections.Generic.IEnumerable<System.Runtime.DurableInstancing.InstanceKey> transientCorrelations);
new System.ServiceModel.Channels.CorrelationMessageProperty : System.Runtime.DurableInstancing.InstanceKey * seq<System.Runtime.DurableInstancing.InstanceKey> * seq<System.Runtime.DurableInstancing.InstanceKey> -> System.ServiceModel.Channels.CorrelationMessageProperty
Public Sub New (correlationKey As InstanceKey, additionalKeys As IEnumerable(Of InstanceKey), transientCorrelations As IEnumerable(Of InstanceKey))

Parameters

correlationKey
InstanceKey

The correlation key.

additionalKeys
IEnumerable<InstanceKey>

The additional keys.

transientCorrelations
IEnumerable<InstanceKey>

The transient correlations.

Applies to