EntryListed

ArchiveLoadOptions.EntryListed property

Gets or sets the delegate invoked when an entry listed within table of content.

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

Examples

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

See Also