ConstructionCall 构造函数

定义

重载

ConstructionCall(Header[])

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

从一个远程处理标头数组初始化 ConstructionCall 类的一个新实例。

ConstructionCall(IMessage)

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

通过复制现有消息来初始化 ConstructionCall 类的一个新实例。

ConstructionCall(Header[])

从一个远程处理标头数组初始化 ConstructionCall 类的一个新实例。

此 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[]

包含键/值对的远程处理标头数组。 此数组用于初始化 ConstructionCall 属于命名空间“;”http://schemas.microsoft.com/clr/soap/messageProperties"的标头的字段。

注解

ConstructionCall由.NET Framework的远程处理基础结构使用。 无需直接创建 类的 ConstructionCall 实例;而是使用 IConstructionCallMessage 接口。

适用于

ConstructionCall(IMessage)

通过复制现有消息来初始化 ConstructionCall 类的一个新实例。

此 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

远程处理消息。

注解

ConstructionCall由.NET Framework的远程处理基础结构使用。 无需直接创建 类的 ConstructionCall 实例;而是使用 IConstructionCallMessage 接口。

适用于