C# Класс FSO.Files.FAR1.FAR1Archive

A FAR1 (File Archive v1) archive.
Показать файл Открыть проект

Открытые методы

Метод Описание
Close ( ) : void
FAR1Archive ( string Path ) : System

Creates a new FAR1Archive instance from a path.

GetAllEntries ( ) : byte[]>>.List

Gets all entries in the archive.

GetAllFarEntries ( ) : List

Returns a list of all FarEntry instances in this archive.

GetEntry ( FarEntry Entry ) : byte[]

Gets an entry's data from a FarEntry instance.

GetEntry ( byte[]>.KeyValuePair Entry ) : byte[]

Gets an entry based on a KeyValuePair.

Описание методов

Close() публичный Метод

public Close ( ) : void
Результат void

FAR1Archive() публичный Метод

Creates a new FAR1Archive instance from a path.
public FAR1Archive ( string Path ) : System
Path string The path to the archive.
Результат System

GetAllEntries() публичный Метод

Gets all entries in the archive.
public GetAllEntries ( ) : byte[]>>.List
Результат byte[]>>.List

GetAllFarEntries() публичный Метод

Returns a list of all FarEntry instances in this archive.
public GetAllFarEntries ( ) : List
Результат List

GetEntry() публичный Метод

Gets an entry's data from a FarEntry instance.
public GetEntry ( FarEntry Entry ) : byte[]
Entry FarEntry A FarEntry instance.
Результат byte[]

GetEntry() публичный Метод

Gets an entry based on a KeyValuePair.
public GetEntry ( byte[]>.KeyValuePair Entry ) : byte[]
Entry byte[]>.KeyValuePair A KeyValuePair (string, byte[]) representing the entry. The byte array can be null.
Результат byte[]