PeterO.IReader

PeterO.IReader

public interface IReader :
    PeterO.IByteReader

A generic interface for reading bytes of data from a data source.

Member Summary

Read

int Read(
    byte[] bytes,
    int offset,
    int length);

Reads a portion of a byte array from the data source.

Parameters:

Return Value:

The number of bytes read from the data source. Can be less than length if the end of the stream was reached.

Exceptions:

Back to Encoding start page.