ArchiveLoadOptions.EntryListed

ArchiveLoadOptions.EntryListed property

Hämtar eller ställer in ombudet som anropas när en post listad i innehållsförteckningen.

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

Exempel

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

Se även