An IEnumerator, for use of a ZipFile in a foreach construct.
Declaration Syntax
C# | Visual Basic | Visual C++ |
public IEnumerator GetNewEnum()
Public Function GetNewEnum As IEnumerator
public: IEnumerator^ GetNewEnum()
Return Value
The IEnumerator over the entries in the ZipFile.
Remarks
This method is included for COM support. An application generally does not call
this method directly. It is called implicitly by COM clients when enumerating
the entries in the ZipFile instance. In VBScript, this is done with a For Each
statement. In Javascript, this is done with new Enumerator(zipfile).