read method

read

Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.

def read(self, buffer, offset, count):
    ...
ParameterTypeDescription
bufferbytesSequence of bytes int[]
offsetintStart reading position int
countintCount bytes for reading int

See Also