Returns the readonly collection of entries in the Zip archive.
Declaration Syntax
C# | Visual Basic | Visual C++ |
public ICollection<ZipEntry> Entries { get; }
Public ReadOnly Property Entries As ICollection(Of ZipEntry) Get
public: property ICollection<ZipEntry^>^ Entries { ICollection<ZipEntry^>^ get (); }
Remarks
If there are no entries in the current ZipFile, the value returned is a non-null zero-element collection. If there are entries in the zip file, the elements are returned in no particular order.
This is the implied enumerator on the ZipFile class. If you use a ZipFile instance in a context that expects an enumerator, you will get this collection.
See Also