Represents a stream of bytes.
public | Stream() |
suppress | Stream(const Stream&) |
public Result<bool> | CopyTo(Stream& destination) |
public Result<bool> | CopyTo(Stream& destination, long bufferSize) |
public virtual Result<bool> | Flush() |
public abstract Result<long> | Read(byte* buf, long count) |
public abstract Result<int> | ReadByte() |
public virtual Result<bool> | Seek(long pos, Origin origin) |
public virtual Result<long> | Tell() |
public abstract Result<bool> | Write(byte x) |
public abstract Result<bool> | Write(byte* buf, long count) |
suppress void | operator=(const Stream&) |