public InputStreamReader(InputStream s, Encoding e) : base(s.GetWrappedStream (), e) { }
public InputStreamReader(InputStream s, string encoding) : base(s.GetWrappedStream (), Encoding.GetEncoding (encoding)) { }
public InputStreamReader(InputStream s) : base(s.GetWrappedStream ()) { }
public WrappedSystemStream(InputStream ist) { this.ist = ist; }
public FilterInputStream(InputStream s) { this.@in = s; }
internal static InputStream Wrap(Stream s) { InputStream stream = new InputStream (); stream.Wrapped = s; return stream; }