ArchiveLoadOptions.EntryListed

ArchiveLoadOptions.EntryListed property

获取或设置在目录中列出条目时调用的委托。

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

例子

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

也可以看看