Difference between Stream.CopyTo and MemoryStream.WriteTo

jorgehmv picture jorgehmv · May 18, 2012 · Viewed 19.5k times · Source

I have a HttpHandler returning an image through Response.OutputStream. I have the following code:

_imageProvider.GetImage().CopyTo(context.Response.OutputStream);

GetImage() method returns a Stream which is actually a MemoryStream instance and it is returning 0 bytes to the browser. If i change GetImage() method signature to return a MemoryStream and use the following line of code:

_imageProvider.GetImage().WriteTo(context.Response.OutputStream);

It works and the browser gets an image. So what is the difference between WriteTo and CopyTo in MemoryStream class, and what is the recommended way to make this works using Stream class in GetImage() method signature.

Answer

BrokenGlass picture BrokenGlass · May 18, 2012

WriteTo() is resetting the read position to zero before copying the data - CopyTo() on the other hand will copy whatever data remains after the current position in the stream. That means if you did not reset the position yourself, no data will be read at all.

Most likely you just miss the following in your first version:

memoryStream.Position = 0;