|
Fingerprint_Card
|
This interface is provided, along with the method SetEntryFactory, to allow the programmer to have their own TarEntry subclass instantiated for the entries return from GetNextEntry. More...

Public Member Functions | |
| TarEntry | CreateEntry (string name) |
| Create an entry based on name alone. | |
| TarEntry | CreateEntryFromFile (string fileName) |
| Create an instance based on an actual file. | |
| TarEntry | CreateEntry (byte[] headerBuffer) |
| Create a tar entry based on the header information passed. | |
This interface is provided, along with the method SetEntryFactory, to allow the programmer to have their own TarEntry subclass instantiated for the entries return from GetNextEntry.
| TarEntry ICSharpCode.SharpZipLib.Tar.TarInputStream.IEntryFactory.CreateEntry | ( | byte[] | headerBuffer | ) |
Create a tar entry based on the header information passed.
| headerBuffer | Buffer containing header information to create an an entry from. |
Implemented in ICSharpCode.SharpZipLib.Tar.TarInputStream.EntryFactoryAdapter.
| TarEntry ICSharpCode.SharpZipLib.Tar.TarInputStream.IEntryFactory.CreateEntry | ( | string | name | ) |
Create an entry based on name alone.
| name | Name of the new EntryPointNotFoundException to create |
Implemented in ICSharpCode.SharpZipLib.Tar.TarInputStream.EntryFactoryAdapter.
| TarEntry ICSharpCode.SharpZipLib.Tar.TarInputStream.IEntryFactory.CreateEntryFromFile | ( | string | fileName | ) |
Create an instance based on an actual file.
| fileName | Name of file to represent in the entry |
Implemented in ICSharpCode.SharpZipLib.Tar.TarInputStream.EntryFactoryAdapter.