ConstructionResponse(Header[], IMethodCallMessage) Constructor

Definition

Initializes a new instance of the ConstructionResponse class from an array of remoting headers and a request message.

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

public:
 ConstructionResponse(cli::array <System::Runtime::Remoting::Messaging::Header ^> ^ h, System::Runtime::Remoting::Messaging::IMethodCallMessage ^ mcm);
public ConstructionResponse (System.Runtime.Remoting.Messaging.Header[] h, System.Runtime.Remoting.Messaging.IMethodCallMessage mcm);
new System.Runtime.Remoting.Messaging.ConstructionResponse : System.Runtime.Remoting.Messaging.Header[] * System.Runtime.Remoting.Messaging.IMethodCallMessage -> System.Runtime.Remoting.Messaging.ConstructionResponse
Public Sub New (h As Header(), mcm As IMethodCallMessage)

Parameters

h
Header[]

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

mcm
IMethodCallMessage

A request message that constitutes a constructor call on a remote object.

Remarks

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

Applies to