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

◆ Entries

ReadOnlyCollection<ZipArchiveEntry> System.IO.Compression.ZipArchive.Entries
get

Definition at line 41 of file ZipArchive.cs.

42 {
43 get
44 {
45 if (_mode == ZipArchiveMode.Create)
46 {
47 throw new NotSupportedException(System.SR.EntriesInCreateMode);
48 }
51 return _entriesCollection;
52 }
53 }
ReadOnlyCollection< ZipArchiveEntry > _entriesCollection
Definition ZipArchive.cs:19
static string EntriesInCreateMode
Definition SR.cs:74
Definition SR.cs:7