3 writes to cachedBodyStream
System.Messaging (3)
System\Messaging\Message.cs (3)
658
this.
cachedBodyStream
= new MemoryStream();
667
this.
cachedBodyStream
= new MemoryStream(properties.GetUI1Vector(NativeMethods.MESSAGE_PROPID_BODY),
685
this.
cachedBodyStream
= value;
8 references to cachedBodyStream
System.Messaging (8)
System\Messaging\Message.cs (8)
657
if (this.
cachedBodyStream
== null)
660
return this.
cachedBodyStream
;
666
if (this.
cachedBodyStream
== null)
670
return this.
cachedBodyStream
;
2209
if (this.filter.Body && this.
cachedBodyStream
!= null)
2211
this.
cachedBodyStream
.Position = 0;
2212
byte[] bytes = new byte[(int)this.
cachedBodyStream
.Length];
2213
this.
cachedBodyStream
.Read(bytes, 0, bytes.Length);