3 writes to Body
System.ServiceModel (3)
System\ServiceModel\Channels\MsmqDecodeHelper.cs (1)
397integrationProperty.Body = body;
System\ServiceModel\MsmqIntegration\MsmqMessage.cs (2)
21this.property.Body = body; 34this.property.Body = value;
8 references to Body
System.ServiceModel (8)
System\ServiceModel\MsmqIntegration\MsmqIntegrationChannelFactory.cs (6)
128XmlSerializer serializer = GetXmlSerializerForType(property.Body.GetType()); 129serializer.Serialize(stream, property.Body); 134BinaryFormatter.Serialize(stream, property.Body); 147ActiveXSerializer.Serialize(stream as MemoryStream, property.Body, ref bodyType); 153byte[] byteArray = property.Body as byte[]; 163Stream bodyStream = property.Body as Stream;
System\ServiceModel\MsmqIntegration\MsmqIntegrationOutputChannel.cs (1)
135if (null != property.Body)
System\ServiceModel\MsmqIntegration\MsmqMessage.cs (1)
29get { return (T)this.property.Body; }