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

또한보십시오