IDataInput.ReadUnsignedByte Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Reads one input byte, zero-extends
it to type int
, and returns
the result, which is therefore in the range
0
through 255
.
[Android.Runtime.Register("readUnsignedByte", "()I", "GetReadUnsignedByteHandler:Java.IO.IDataInputInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public int ReadUnsignedByte ();
[<Android.Runtime.Register("readUnsignedByte", "()I", "GetReadUnsignedByteHandler:Java.IO.IDataInputInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member ReadUnsignedByte : unit -> int
Returns
the unsigned 8-bit value read.
- Attributes
Exceptions
if the end of the input is reached before the read request can be satisfied.
if an I/O error occurs while reading.
Remarks
Reads one input byte, zero-extends it to type int
, and returns the result, which is therefore in the range 0
through 255
. This method is suitable for reading the byte written by the writeByte
method of interface DataOutput
if the argument to writeByte
was intended to be a value in the range 0
through 255
.
Java documentation for java.io.DataInput.readUnsignedByte()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.