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