C# 클래스 Files.FAR1.FAR1Archive

상속: IDisposable
파일 보기 프로젝트 열기: Afr0Games/Project-Dollhouse 1 사용 예제들

공개 메소드들

메소드 설명
ContainsEntry ( string Filename ) : bool

Does this archive contain the specified entry?

Dispose ( ) : void
FAR1Archive ( string Path ) : System
GrabAllEntries ( ) : List

Returns all entries.

GrabEntries ( List Entries ) : List

Returns the given entries as a List of Stream instances. Throws a FAR3Exception if an entry wasn't found.

GrabEntry ( string Filename ) : Stream

Returns an entry in this archive as a Stream instance. Throws a FAR3Exception if entry was not found.

ReadArchive ( bool ThrowException ) : void

Reads all entries in the archive into memory.

보호된 메소드들

메소드 설명
Dispose ( bool CleanupNativeAndManagedResources ) : void

메소드 상세

ContainsEntry() 공개 메소드

Does this archive contain the specified entry?
public ContainsEntry ( string Filename ) : bool
Filename string
리턴 bool

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void

Dispose() 보호된 메소드

protected Dispose ( bool CleanupNativeAndManagedResources ) : void
CleanupNativeAndManagedResources bool
리턴 void

FAR1Archive() 공개 메소드

public FAR1Archive ( string Path ) : System
Path string
리턴 System

GrabAllEntries() 공개 메소드

Returns all entries.
public GrabAllEntries ( ) : List
리턴 List

GrabEntries() 공개 메소드

Returns the given entries as a List of Stream instances. Throws a FAR3Exception if an entry wasn't found.
public GrabEntries ( List Entries ) : List
Entries List A List of UniqueFileID of entries to grab.
리턴 List

GrabEntry() 공개 메소드

Returns an entry in this archive as a Stream instance. Throws a FAR3Exception if entry was not found.
public GrabEntry ( string Filename ) : Stream
Filename string
리턴 Stream

ReadArchive() 공개 메소드

Reads all entries in the archive into memory.
public ReadArchive ( bool ThrowException ) : void
ThrowException bool Wether or not to throw an exception if the archive was not a FAR. If false, function will return.
리턴 void