8 references to GetErrorMessage
System.IO.Compression (8)
src\runtime\src\libraries\Common\src\System\IO\Compression\ZLibNative.cs (1)
273
string zlibErrorMessage =
GetErrorMessage
();
System\IO\Compression\DeflateEncoder.cs (2)
225
_ => throw new ZLibException(SR.ZLibErrorUnexpected, "deflate", (int)errorCode, _state.
GetErrorMessage
())
279
_ => throw new ZLibException(SR.ZLibErrorUnexpected, "deflate", (int)errorCode, _state.
GetErrorMessage
())
System\IO\Compression\DeflateZLib\Deflater.cs (2)
218
throw new ZLibException(SR.ZLibErrorInconsistentStream, "deflate", (int)errC, _zlibStream.
GetErrorMessage
());
221
throw new ZLibException(SR.ZLibErrorUnexpected, "deflate", (int)errC, _zlibStream.
GetErrorMessage
());
System\IO\Compression\DeflateZLib\Inflater.cs (3)
318
throw new ZLibException(SR.ZLibErrorNotEnoughMemory, "inflate_", (int)errC, _zlibStream.
GetErrorMessage
());
324
throw new ZLibException(SR.ZLibErrorInconsistentStream, "inflate_", (int)errC, _zlibStream.
GetErrorMessage
());
327
throw new ZLibException(SR.ZLibErrorUnexpected, "inflate_", (int)errC, _zlibStream.
GetErrorMessage
());