C# 클래스 ICSharpCode.SharpZipLib.Tar.TarInputStream.EntryFactoryAdapter

Standard entry factory class creating instances of the class TarEntry
상속: IEntryFactory
파일 보기 프로젝트 열기: icsharpcode/SharpZipLib

공개 메소드들

메소드 설명
CreateEntry ( byte headerBuffer ) : TarEntry

Create an entry based on details in header

CreateEntry ( string name ) : TarEntry

Create a TarEntry based on named

CreateEntryFromFile ( string fileName ) : TarEntry

Create a tar entry with details obtained from file

메소드 상세

CreateEntry() 공개 메소드

Create an entry based on details in header
public CreateEntry ( byte headerBuffer ) : TarEntry
headerBuffer byte The buffer containing entry details.
리턴 TarEntry

CreateEntry() 공개 메소드

Create a TarEntry based on named
public CreateEntry ( string name ) : TarEntry
name string The name to use for the entry
리턴 TarEntry

CreateEntryFromFile() 공개 메소드

Create a tar entry with details obtained from file
public CreateEntryFromFile ( string fileName ) : TarEntry
fileName string The name of the file to retrieve details from.
리턴 TarEntry