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

◆ OnZipErrorSaving()

bool Ionic.Zip.ZipFile.OnZipErrorSaving ( ZipEntry entry,
Exception exc )
inlinepackage

Definition at line 2039 of file ZipFile.cs.

2040 {
2041 if (this.ZipError != null)
2042 {
2043 object @lock = this.LOCK;
2044 Monitor.Enter(@lock);
2045 ZipErrorEventArgs zipErrorEventArgs = ZipErrorEventArgs.Saving(this._name, entry, exc);
2047 if (zipErrorEventArgs._cancel)
2048 {
2050 }
2051 Monitor.Exit(@lock);
2052 }
2053 return this._saveOperationCanceled;
2054 }
class f__AnonymousType0<< Count > j__TPar
EventHandler< ZipErrorEventArgs > ZipError
Definition ZipFile.cs:2019
bool _saveOperationCanceled
Definition ZipFile.cs:2727
static void Exit(object obj)
Definition Monitor.cs:47
static void Enter(object obj)
Definition Monitor.cs:11

References Ionic.Zip.ZipProgressEventArgs._cancel, Ionic.Zip.ZipFile._name, Ionic.Zip.ZipFile._saveOperationCanceled, System.Threading.Monitor.Enter(), System.Threading.Monitor.Exit(), j__TPar, Ionic.Zip.ZipFile.LOCK, Ionic.Zip.ZipErrorEventArgs.Saving(), and Ionic.Zip.ZipFile.ZipError.

Referenced by Ionic.Zip.ZipEntry.OnZipErrorWhileSaving().