ArchiveLoadOptions.EntryListed

ArchiveLoadOptions.EntryListed property

Mendapat atau menyetel delegasi yang dipanggil saat entri tercantum dalam daftar isi.

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

Contoh

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

Lihat juga