Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ OffsetOfCompressedData

long System.IO.Compression.ZipArchiveEntry.OffsetOfCompressedData
getprivate

Definition at line 364 of file ZipArchiveEntry.cs.

365 {
366 get
367 {
368 if (!_storedOffsetOfCompressedData.HasValue)
369 {
371 if (!ZipLocalFileHeader.TrySkipBlock(_archive.ArchiveReader))
372 {
373 throw new InvalidDataException(System.SR.LocalFileHeaderCorrupt);
374 }
376 }
378 }
379 }
long Seek(long offset, SeekOrigin origin)
static string LocalFileHeaderCorrupt
Definition SR.cs:104
Definition SR.cs:7

Referenced by System.IO.Compression.ZipArchiveEntry.IsOpenable(), System.IO.Compression.ZipArchiveEntry.LoadLocalHeaderExtraFieldAndCompressedBytesIfNeeded(), and System.IO.Compression.ZipArchiveEntry.OpenInReadMode().