15 instantiations of ZLibException
System.IO.Compression (12)
src\libraries\Common\src\System\IO\Compression\ZLibNative.cs (3)
323throw new ZLibException(exceptionMessage, zlibErrorContext, (int)zlibErrorCode, zlibErrorMessage); 342throw new ZLibException(SR.ZLibErrorDLLLoadError, e); 389throw new ZLibException(SR.ZLibErrorDLLLoadError, e);
System\IO\Compression\DeflateEncoder.cs (2)
239_ => throw new ZLibException(SR.ZLibErrorUnexpected, "deflate", (int)errorCode, _state.GetErrorMessage()) 293_ => throw new ZLibException(SR.ZLibErrorUnexpected, "deflate", (int)errorCode, _state.GetErrorMessage())
System\IO\Compression\DeflateZLib\Deflater.cs (3)
179throw new ZLibException(SR.ZLibErrorDLLLoadError, cause); 192throw new ZLibException(SR.ZLibErrorInconsistentStream, "deflate", (int)errC, _zlibStream.GetErrorMessage()); 195throw new ZLibException(SR.ZLibErrorUnexpected, "deflate", (int)errC, _zlibStream.GetErrorMessage());
System\IO\Compression\DeflateZLib\Inflater.cs (4)
259throw new ZLibException(SR.ZLibErrorDLLLoadError, cause); 271throw new ZLibException(SR.ZLibErrorNotEnoughMemory, "inflate_", (int)errC, _zlibStream.GetErrorMessage()); 277throw new ZLibException(SR.ZLibErrorInconsistentStream, "inflate_", (int)errC, _zlibStream.GetErrorMessage()); 280throw new ZLibException(SR.ZLibErrorUnexpected, "inflate_", (int)errC, _zlibStream.GetErrorMessage());
System.Net.WebSockets (3)
src\libraries\Common\src\System\IO\Compression\ZLibNative.cs (3)
323throw new ZLibException(exceptionMessage, zlibErrorContext, (int)zlibErrorCode, zlibErrorMessage); 342throw new ZLibException(SR.ZLibErrorDLLLoadError, e); 389throw new ZLibException(SR.ZLibErrorDLLLoadError, e);
1 reference to ZLibException
System (1)
System.cs (1)
6[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.IO.Compression.ZLibException))]