CorrelationCallbackMessageProperty Constructors

Definition

Called by derived class constructors to initialize the object.

Overloads

CorrelationCallbackMessageProperty(ICollection<String>)

Called by derived classes to initialize a new instance of the derived class using the specified collection of correlation data that is required to calculate the correlation.

CorrelationCallbackMessageProperty(CorrelationCallbackMessageProperty)

Called by derived classes to initialize a new instance of the derived class using the required correlation data from another CorrelationCallbackMessageProperty derived class instance.

CorrelationCallbackMessageProperty(ICollection<String>)

Called by derived classes to initialize a new instance of the derived class using the specified collection of correlation data that is required to calculate the correlation.

protected:
 CorrelationCallbackMessageProperty(System::Collections::Generic::ICollection<System::String ^> ^ neededData);
protected CorrelationCallbackMessageProperty (System.Collections.Generic.ICollection<string> neededData);
new System.ServiceModel.Channels.CorrelationCallbackMessageProperty : System.Collections.Generic.ICollection<string> -> System.ServiceModel.Channels.CorrelationCallbackMessageProperty
Protected Sub New (neededData As ICollection(Of String))

Parameters

neededData
ICollection<String>

The correlation data required to calculate the correlation.

Applies to

CorrelationCallbackMessageProperty(CorrelationCallbackMessageProperty)

Called by derived classes to initialize a new instance of the derived class using the required correlation data from another CorrelationCallbackMessageProperty derived class instance.

protected:
 CorrelationCallbackMessageProperty(System::ServiceModel::Channels::CorrelationCallbackMessageProperty ^ callback);
protected CorrelationCallbackMessageProperty (System.ServiceModel.Channels.CorrelationCallbackMessageProperty callback);
new System.ServiceModel.Channels.CorrelationCallbackMessageProperty : System.ServiceModel.Channels.CorrelationCallbackMessageProperty -> System.ServiceModel.Channels.CorrelationCallbackMessageProperty
Protected Sub New (callback As CorrelationCallbackMessageProperty)

Parameters

callback
CorrelationCallbackMessageProperty

The CorrelationCallbackMessageProperty derived class instance to copy.

Applies to