Exemplo n.º 1
0
 // Token: 0x060014CF RID: 5327
 // RVA: 0x0006BE2C File Offset: 0x0006A02C
 public Stream11(Stream stream_1, Class189 class189_1, int int_0)
 {
     if (stream_1 == null)
     {
         throw new ArgumentNullException("baseOutputStream");
     }
     if (!stream_1.CanWrite)
     {
         throw new ArgumentException("Must support writing", "baseOutputStream");
     }
     if (class189_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.class189_0 = class189_1;
 }
Exemplo n.º 2
0
 // Token: 0x060014CE RID: 5326
 // RVA: 0x00012A22 File Offset: 0x00010C22
 public Stream11(Stream stream_1, Class189 class189_1)
     : this(stream_1, class189_1, 512)
 {
 }