MsmqIntegrationBindingElement.TargetSerializationTypes 属性

定义

获取或设置 Type 对象的数组,这些对象包含消息反序列化的目标类型。

public:
 property cli::array <Type ^> ^ TargetSerializationTypes { cli::array <Type ^> ^ get(); void set(cli::array <Type ^> ^ value); };
public Type[] TargetSerializationTypes { get; set; }
member this.TargetSerializationTypes : Type[] with get, set
Public Property TargetSerializationTypes As Type()

属性值

Type[]

包含消息反序列化的目标类型的 Type 的数组。

示例

MsmqIntegrationBindingElement msmqBindingElement = new MsmqIntegrationBindingElement();
msmqBindingElement.TargetSerializationTypes = new Type[] { typeof(string) };

注解

MSMQ 消息的正文未类型化。 使用此属性TargetSerializationTypes可以指定从 MSMQ 应用程序发送到 Windows Communication Foundation (WCF) 接收应用程序时消息反序列化的类型。 仅当 MsmqMessageSerializationFormat 设置为 Xml 时,才使用此属性。

适用于