ConstructionCall Constructors

Definition

Overloads

ConstructionCall(Header[])

This API supports the product infrastructure and is not intended to be used directly from your code.

Initializes a new instance of the ConstructionCall class from an array of remoting headers.

ConstructionCall(IMessage)

This API supports the product infrastructure and is not intended to be used directly from your code.

Initializes a new instance of the ConstructionCall class by copying an existing message.

ConstructionCall(Header[])

Initializes a new instance of the ConstructionCall class from an array of remoting headers.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 ConstructionCall(cli::array <System::Runtime::Remoting::Messaging::Header ^> ^ headers);
public ConstructionCall (System.Runtime.Remoting.Messaging.Header[] headers);
new System.Runtime.Remoting.Messaging.ConstructionCall : System.Runtime.Remoting.Messaging.Header[] -> System.Runtime.Remoting.Messaging.ConstructionCall
Public Sub New (headers As Header())

Parameters

headers
Header[]

An array of remoting headers that contain key-value pairs. This array is used to initialize ConstructionCall fields for those headers that belong to the namespace "http://schemas.microsoft.com/clr/soap/messageProperties".

Remarks

The ConstructionCall class is used by the remoting infrastructure of the .NET Framework. You do not need to create an instance of the ConstructionCall class directly; instead, use the IConstructionCallMessage interface.

Applies to

ConstructionCall(IMessage)

Initializes a new instance of the ConstructionCall class by copying an existing message.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 ConstructionCall(System::Runtime::Remoting::Messaging::IMessage ^ m);
public ConstructionCall (System.Runtime.Remoting.Messaging.IMessage m);
new System.Runtime.Remoting.Messaging.ConstructionCall : System.Runtime.Remoting.Messaging.IMessage -> System.Runtime.Remoting.Messaging.ConstructionCall
Public Sub New (m As IMessage)

Parameters

m
IMessage

A remoting message.

Remarks

The ConstructionCall class is used by the remoting infrastructure of the .NET Framework. You do not need to create an instance of the ConstructionCall class directly; instead, use the IConstructionCallMessage interface.

Applies to