Home | History | Annotate | Download | only in DotZLib

Lines Matching refs:throw

58                 throw new ZLibException(-1, "Could not open " + fileName);

71 throw new ZLibException(-1, "Could not open " + fileName);
156 if (!CanRead) throw new NotSupportedException();
157 if (buffer == null) throw new ArgumentNullException();
158 if (offset < 0 || count < 0) throw new ArgumentOutOfRangeException();
159 if ((offset+count) > buffer.Length) throw new ArgumentException();
160 if (_isDisposed) throw new ObjectDisposedException("GZipStream");
168 throw new IOException();
183 if (!CanRead) throw new NotSupportedException();
184 if (_isDisposed) throw new ObjectDisposedException("GZipStream");
201 if (!CanWrite) throw new NotSupportedException();
202 if (buffer == null) throw new ArgumentNullException();
203 if (offset < 0 || count < 0) throw new ArgumentOutOfRangeException();
204 if ((offset+count) > buffer.Length) throw new ArgumentException();
205 if (_isDisposed) throw new ObjectDisposedException("GZipStream");
212 throw new IOException();
228 if (!CanWrite) throw new NotSupportedException();
229 if (_isDisposed) throw new ObjectDisposedException("GZipStream");
233 throw new IOException();
245 throw new NotSupportedException();
257 throw new NotSupportedException();
279 throw new NotSupportedException();
283 throw new NotSupportedException();
296 throw new NotSupportedException();