GetWrappedStream() private method

private GetWrappedStream ( ) : Stream
return Stream
Example #1
0
		public InflaterInputStream (InputStream s)
		{
			this.@in = s;
			this.inf = new Inflater ();
			base.Wrapped = new ICSharpCode.SharpZipLib.Zip.Compression.Streams.InflaterInputStream (s.GetWrappedStream (), this.inf);
		}
Example #2
0
		public InflaterInputStream (InputStream s, Inflater i, int bufferSize)
		{
			this.@in = s;
			this.inf = i;
			base.Wrapped = new ICSharpCode.SharpZipLib.Zip.Compression.Streams.InflaterInputStream (s.GetWrappedStream (), i, bufferSize);
		}
 public BufferedInputStream (InputStream s)
 {
     BaseStream = s.GetWrappedStream ();
     base.Wrapped = new BufferedStream (BaseStream);
 }
 public BufferedInputStream (InputStream s, int bufferSize)
 {
     BaseStream = s.GetWrappedStream ();
     base.Wrapped = new BufferedStream (BaseStream, bufferSize);
 }
		public BufferedInputStream (InputStream s)
		{
			base.Wrapped = new BufferedStream (s.GetWrappedStream ());
		}
 public ObjectInputStream (InputStream s)
 {
     this.reader = new BinaryReader (s.GetWrappedStream ());
 }
Example #7
0
 public InputStreamReader(InputStream s, Encoding e) : base(s.GetWrappedStream(), e)
 {
 }
Example #8
0
		public InputStreamReader (InputStream s, Encoding e) : base(s.GetWrappedStream (), e)
		{
		}
Example #9
0
 public InputStreamReader(InputStream s) : base(s.GetWrappedStream())
 {
 }
Example #10
0
 public InputStreamReader(InputStream s, string encoding) : base(s.GetWrappedStream(), Encoding.GetEncoding(encoding))
 {
 }
Example #11
0
 public InflaterInputStream(InputStream s, Inflater i, int bufferSize)
 {
     this.@in     = s;
     this.inf     = i;
     base.Wrapped = new ICSharpCode.SharpZipLib.Zip.Compression.Streams.InflaterInputStream(s.GetWrappedStream(), i, bufferSize);
 }
Example #12
0
 public InflaterInputStream(InputStream s)
 {
     this.@in     = s;
     this.inf     = new Inflater();
     base.Wrapped = new ICSharpCode.SharpZipLib.Zip.Compression.Streams.InflaterInputStream(s.GetWrappedStream(), this.inf);
 }
 public ObjectInputStream(InputStream s)
 {
     this.reader = new BinaryReader(s.GetWrappedStream(), Encoding.UTF8);
 }
Example #14
0
		public InputStreamReader (InputStream s) : base(s.GetWrappedStream ())
		{
		}
Example #15
0
 public BufferedInputStream(InputStream s)
 {
     BaseStream   = s.GetWrappedStream();
     base.Wrapped = new BufferedStream(BaseStream);
 }
Example #16
0
		public InputStreamReader (InputStream s, string encoding) : base(s.GetWrappedStream (), Encoding.GetEncoding (encoding))
		{
		}
Example #17
0
 public BufferedInputStream(InputStream s, int bufferSize)
 {
     BaseStream   = s.GetWrappedStream();
     base.Wrapped = new BufferedStream(BaseStream, bufferSize);
 }
 public ObjectInputStream(InputStream s)
 {
     this.reader = new BinaryReader(s.GetWrappedStream());
 }
		public BufferedInputStream (InputStream s, int bufferSize)
		{
			base.Wrapped = new BufferedStream (s.GetWrappedStream (), bufferSize);
		}