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