UnmanagedMemoryStream.ReadByte Method
This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Reads a byte from a stream and advances the position within the stream by one byte, or returns -1 if at the end of the stream.
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: System.Int32The unsigned byte cast to an Int32 object, or -1 if at the end of the stream.
| Exception | Condition |
|---|---|
| ObjectDisposedException | The stream is closed. |
| NotSupportedException | The underlying memory does not support reading. - or - The current position is at the end of the stream. |
Show: