ConstructionCall 构造函数

定义

重载

ConstructionCall(Header[])

此 API 支持产品基础结构,不能在代码中直接使用。

从一个远程处理标头数组初始化 ConstructionCall 类的一个新实例。Initializes a new instance of the ConstructionCall class from an array of remoting headers.

ConstructionCall(IMessage)

此 API 支持产品基础结构,不能在代码中直接使用。

通过复制现有消息来初始化 ConstructionCall 类的一个新实例。Initializes a new instance of the ConstructionCall class by copying an existing message.

ConstructionCall(Header[])

从一个远程处理标头数组初始化 ConstructionCall 类的一个新实例。Initializes a new instance of the ConstructionCall class from an array of remoting headers.

此 API 支持产品基础结构,不能在代码中直接使用。

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())

参数

headers
Header[]

包含键/值对的远程处理标头数组。An array of remoting headers that contain key-value pairs. 该数组用于初始化属于“http://schemas.microsoft.com/clr/soap/messageProperties”命名空间的标头的 ConstructionCall 字段。This array is used to initialize ConstructionCall fields for those headers that belong to the namespace "http://schemas.microsoft.com/clr/soap/messageProperties".

注解

ConstructionCall类由 .NET Framework 的远程处理基础结构使用。The ConstructionCall class is used by the remoting infrastructure of the .NET Framework. 不需要直接创建类的实例 ConstructionCall ,而是使用 IConstructionCallMessage 接口。You do not need to create an instance of the ConstructionCall class directly; instead, use the IConstructionCallMessage interface.

适用于

ConstructionCall(IMessage)

通过复制现有消息来初始化 ConstructionCall 类的一个新实例。Initializes a new instance of the ConstructionCall class by copying an existing message.

此 API 支持产品基础结构,不能在代码中直接使用。

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)

参数

m
IMessage

远程处理消息。A remoting message.

注解

ConstructionCall类由 .NET Framework 的远程处理基础结构使用。The ConstructionCall class is used by the remoting infrastructure of the .NET Framework. 不需要直接创建类的实例 ConstructionCall ,而是使用 IConstructionCallMessage 接口。You do not need to create an instance of the ConstructionCall class directly; instead, use the IConstructionCallMessage interface.

适用于