terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ CompressionLevel

CompressionLevel Ionic.Zip.ZipEntry.CompressionLevel
getset

Definition at line 473 of file ZipEntry.cs.

474 {
475 get
476 {
477 return this._CompressionLevel;
478 }
479 set
480 {
483 if (value == CompressionLevel.None && compressionMethod == 0)
484 {
485 return;
486 }
487 ZipFile zf = this._container._zf;
488 if (zf != null)
489 {
490 zf._contentsChanged = true;
491 }
493 }
494 }
class f__AnonymousType0<< Count > j__TPar
CompressionLevel _CompressionLevel
Definition ZipEntry.cs:2372
ZipContainer _container
Definition ZipEntry.cs:2426