MemoryStream Methods
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
The MemoryStream type exposes the following members.
| Name | Description | |
|---|---|---|
|
BeginRead | Begins an asynchronous read operation. (Inherited from Stream.) |
|
BeginWrite | Begins an asynchronous write operation. (Inherited from Stream.) |
|
Close | Closes the current stream and releases any resources (such as sockets and file handles) associated with the current stream. (Inherited from Stream.) |
|
CopyTo(Stream) | Reads all the bytes from the current stream and writes them to the destination stream. (Inherited from Stream.) |
|
CopyTo(Stream, Int32) | Reads all the bytes from the current stream and writes them to a destination stream, using a specified buffer size. (Inherited from Stream.) |
|
CopyToAsync(Stream) | Asynchronously reads the bytes from the current stream and writes them to another stream. (Inherited from Stream.) |
|
CopyToAsync(Stream, Int32) | Asynchronously reads the bytes from the current stream and writes them to another stream, using a specified buffer size. (Inherited from Stream.) |
|
CopyToAsync(Stream, Int32, CancellationToken) | Asynchronously reads the bytes from the current stream and writes them to another stream, using a specified buffer size and cancellation token. (Inherited from Stream.) |
|
Dispose | Releases all resources used by the Stream. (Inherited from Stream.) |
|
Dispose(Boolean) | Releases the unmanaged resources used by the MemoryStream class and optionally releases the managed resources. (Overrides Stream.Dispose(Boolean).) |
|
EndRead | Waits for the pending asynchronous read to complete. (Inherited from Stream.) |
|
EndWrite | Ends an asynchronous write operation. (Inherited from Stream.) |
|
Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
|
Finalize | Allows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) |
|
Flush | Overrides Stream.Flush so that no action is performed. (Overrides Stream.Flush.) |
|
FlushAsync | Asynchronously clears all buffers for this stream and causes any buffered data to be written to the underlying device. (Inherited from Stream.) |
|
FlushAsync(CancellationToken) | Asynchronously clears all buffers for this stream, and monitors cancellation requests. (Overrides Stream.FlushAsync(CancellationToken).) |
|
GetBuffer | Returns the array of unsigned bytes from which this stream was created. |
|
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
|
GetType | Gets the Type of the current instance. (Inherited from Object.) |
|
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
|
Read | Reads a block of bytes from the current stream and writes the data to a buffer. (Overrides Stream.Read(Byte(), Int32, Int32).) |
|
ReadAsync(Byte(), Int32, Int32) | Asynchronously reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read. (Inherited from Stream.) |
|
ReadAsync(Byte(), Int32, Int32, CancellationToken) | Asynchronously reads a sequence of bytes from the current stream, advances the position within the stream by the number of bytes read, and monitors cancellation requests. (Overrides Stream.ReadAsync(Byte(), Int32, Int32, CancellationToken).) |
|
ReadByte | Reads a byte from the current stream. (Overrides Stream.ReadByte.) |
|
Seek | Sets the position within the current stream to the specified value. (Overrides Stream.Seek(Int64, SeekOrigin).) |
|
SetLength | Sets the length of the current stream to the specified value. (Overrides Stream.SetLength(Int64).) |
|
ToArray | Writes the stream contents to a byte array, regardless of the Position property. |
|
ToString | Returns a string that represents the current object. (Inherited from Object.) |
|
Write | Writes a block of bytes to the current stream using data read from a buffer. (Overrides Stream.Write(Byte(), Int32, Int32).) |
|
WriteAsync(Byte(), Int32, Int32) | Asynchronously writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written. (Inherited from Stream.) |
|
WriteAsync(Byte(), Int32, Int32, CancellationToken) | Asynchronously writes a sequence of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests. (Overrides Stream.WriteAsync(Byte(), Int32, Int32, CancellationToken).) |
|
WriteByte | Writes a byte to the current stream at the current position. (Overrides Stream.WriteByte(Byte).) |
|
WriteTo | Writes the entire contents of this memory stream to another stream. |
| Name | Description | |
|---|---|---|
|
AsInputStream | (Defined by WindowsRuntimeStreamExtensions.) |
|
AsOutputStream | (Defined by WindowsRuntimeStreamExtensions.) |
|
GetWindowsRuntimeBuffer | Overloaded. Returns a Windows.Storage.Streams.IBuffer interface that represents the same memory as the specified memory stream. (Defined by WindowsRuntimeBufferExtensions.) |
|
GetWindowsRuntimeBuffer(Int32, Int32) | Overloaded. Returns a Windows.Storage.Streams.IBuffer interface that represents a region within the memory that the specified memory stream represents. (Defined by WindowsRuntimeBufferExtensions.) |
Show: