ArchiveLoadOptions.EntryListed

ArchiveLoadOptions.EntryListed property

Obtiene o establece el delegado invocado cuando aparece una entrada en la tabla de contenido.

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

Ejemplos

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

Ver también