Method LimitedInputStream.this

Constructs a limited stream from an existing input stream.

Prototypes

LimitedInputStream this(
  InputStream stream,
  ulong byte_limit,
  bool silent_limit
);

Parameters

Parameter nameDescription

stream

the input stream to be wrapped

byte_limit

the maximum number of bytes readable from the constructed stream

silent_limit

if set, the stream will behave exactly like the original stream, but will throw an exception as soon as the limit is reached.

Authors

Sönke Ludwig

Copyright

© 2012 RejectedSoftware e.K.

License

Subject to the terms of the MIT license, as written in the included LICENSE.txt file.