ArchiveLoadOptions.EntryListed

ArchiveLoadOptions.EntryListed property

Obtient ou définit le délégué appelé lorsqu’une entrée est répertoriée dans la table des matières.

public EventHandler<EntryEventArgs> EntryListed { get; set; }

Exemples

Archive archive = new Archive("archive.zip", new ArchiveLoadOptions() { EntryListed = (s, e) => { Console.WriteLine(e.Entry.Name); } });

Voir également