ArchiveLoadOptions.EntryListed

ArchiveLoadOptions.EntryListed property

İçindekiler tablosunda bir giriş listelendiğinde çağrılan temsilciyi alır veya ayarlar.

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

Örnekler

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

Ayrıca bakınız