Esempio n. 1
0
 public Stream22(Stream stream_1, Class194 class194_1, int int_0)
 {
     if (stream_1 == null)
     {
         throw new ArgumentNullException("baseOutputStream");
     }
     if (!stream_1.CanWrite)
     {
         throw new ArgumentException("Must support writing", "baseOutputStream");
     }
     if (class194_1 == null)
     {
         throw new ArgumentNullException("deflater");
     }
     if (int_0 <= 0)
     {
         throw new ArgumentOutOfRangeException("bufferSize");
     }
     this.stream_0 = stream_1;
     this.byte_0 = new byte[int_0];
     this.class194_0 = class194_1;
 }
Esempio n. 2
0
 public Stream22(Stream stream_1, Class194 class194_1)
     : this(stream_1, class194_1, 512)
 {
 }