DataInputStream.ReadFully 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.
Overloads
ReadFully(Byte[], Int32, Int32) |
See the general contract of the |
ReadFully(Byte[]) |
See the general contract of the |
ReadFully(Byte[], Int32, Int32)
See the general contract of the readFully
method of DataInput
.
[Android.Runtime.Register("readFully", "([BII)V", "")]
public void ReadFully (byte[]? b, int off, int len);
[<Android.Runtime.Register("readFully", "([BII)V", "")>]
abstract member ReadFully : byte[] * int * int -> unit
override this.ReadFully : byte[] * int * int -> unit
Parameters
- b
- Byte[]
the buffer into which the data is read.
- off
- Int32
the start offset in the data array b
.
- len
- Int32
the number of bytes to read.
Implements
- Attributes
Exceptions
Remarks
See the general contract of the readFully
method of DataInput
.
Bytes for this operation are read from the contained input stream.
Java documentation for java.io.DataInputStream.readFully(byte[], int, int)
.
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.
Applies to
ReadFully(Byte[])
See the general contract of the readFully
method of DataInput
.
[Android.Runtime.Register("readFully", "([B)V", "")]
public void ReadFully (byte[]? b);
[<Android.Runtime.Register("readFully", "([B)V", "")>]
abstract member ReadFully : byte[] -> unit
override this.ReadFully : byte[] -> unit
Parameters
- b
- Byte[]
the buffer into which the data is read.
Implements
- Attributes
Exceptions
Remarks
See the general contract of the readFully
method of DataInput
.
Bytes for this operation are read from the contained input stream.
Java documentation for java.io.DataInputStream.readFully(byte[])
.
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.