MsmqIntegrationBindingElement.TargetSerializationTypes Property

Definition

Gets or sets an array of Type objects that contain the types to which messages should be deserialized.

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

Property Value

Type[]

An array of Type that contains the types to which messages should be deserialized.

Examples

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

Remarks

The body of an MSMQ message is not typed. The TargetSerializationTypes property enables you to specify the types to which messages are deserialized when they are sent from an MSMQ application to a Windows Communication Foundation (WCF) receiving application. This property is used only if MsmqMessageSerializationFormat is set to Xml.

Applies to