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); } });

関連項目