@@ -157,7 +157,7 @@ public Deflater() : this(DEFAULT_COMPRESSION, false)
157
157
/// the compression level, a value between NO_COMPRESSION
158
158
/// and BEST_COMPRESSION, or DEFAULT_COMPRESSION.
159
159
/// </param>
160
- /// <exception cref="System. ArgumentOutOfRangeException">if lvl is out of range.</exception>
160
+ /// <exception cref="ArgumentOutOfRangeException">if lvl is out of range.</exception>
161
161
public Deflater ( int level ) : this ( level , false )
162
162
{
163
163
}
@@ -174,7 +174,7 @@ public Deflater(int level) : this(level, false)
174
174
/// beginning and the adler checksum at the end of the output. This is
175
175
/// useful for the GZIP/PKZIP formats.
176
176
/// </param>
177
- /// <exception cref="System. ArgumentOutOfRangeException">if lvl is out of range.</exception>
177
+ /// <exception cref="ArgumentOutOfRangeException">if lvl is out of range.</exception>
178
178
public Deflater ( int level , bool noZlibHeaderOrFooter )
179
179
{
180
180
if ( level == DEFAULT_COMPRESSION )
@@ -302,7 +302,7 @@ public bool IsNeedingInput
302
302
/// <param name="input">
303
303
/// the buffer containing the input data.
304
304
/// </param>
305
- /// <exception cref="System. InvalidOperationException">
305
+ /// <exception cref="InvalidOperationException">
306
306
/// if the buffer was finished() or ended().
307
307
/// </exception>
308
308
public void SetInput ( byte [ ] input )
@@ -325,7 +325,7 @@ public void SetInput(byte[] input)
325
325
/// <param name="count">
326
326
/// the number of data bytes of input.
327
327
/// </param>
328
- /// <exception cref="System. InvalidOperationException">
328
+ /// <exception cref="InvalidOperationException">
329
329
/// if the buffer was Finish()ed or if previous input is still pending.
330
330
/// </exception>
331
331
public void SetInput ( byte [ ] input , int offset , int count )
@@ -418,10 +418,10 @@ public int Deflate(byte[] output)
418
418
/// The number of compressed bytes added to the output, or 0 if either
419
419
/// needsInput() or finished() returns true or length is zero.
420
420
/// </returns>
421
- /// <exception cref="System. InvalidOperationException">
421
+ /// <exception cref="InvalidOperationException">
422
422
/// If Finish() was previously called.
423
423
/// </exception>
424
- /// <exception cref="System. ArgumentOutOfRangeException">
424
+ /// <exception cref="ArgumentOutOfRangeException">
425
425
/// If offset or length don't match the array length.
426
426
/// </exception>
427
427
public int Deflate ( byte [ ] output , int offset , int length )
@@ -528,7 +528,7 @@ public int Deflate(byte[] output, int offset, int length)
528
528
/// <param name="dictionary">
529
529
/// the dictionary.
530
530
/// </param>
531
- /// <exception cref="System. InvalidOperationException">
531
+ /// <exception cref="InvalidOperationException">
532
532
/// if SetInput () or Deflate () were already called or another dictionary was already set.
533
533
/// </exception>
534
534
public void SetDictionary ( byte [ ] dictionary )
@@ -553,7 +553,7 @@ public void SetDictionary(byte[] dictionary)
553
553
/// <param name="count">
554
554
/// The number of bytes in the dictionary.
555
555
/// </param>
556
- /// <exception cref="System. InvalidOperationException">
556
+ /// <exception cref="InvalidOperationException">
557
557
/// If SetInput () or Deflate() were already called or another dictionary was already set.
558
558
/// </exception>
559
559
public void SetDictionary ( byte [ ] dictionary , int index , int count )
0 commit comments