C# Класс TagTool.TagDefinitions.VFilesList

Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
Data byte[]
Files List

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

Метод Описание
Extract ( VFileInfo file ) : byte[]

Extracts the specified file.

Find ( string path ) : VFileInfo

Attempts to find a file by its path.

Insert ( string name, string folder, byte fileData ) : void

Adds a new file to the tag.

Remove ( VFileInfo file ) : void

Removes a file from the tag.

Replace ( VFileInfo file, byte newData ) : void

Replaces the specified file.

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

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

Extracts the specified file.
public Extract ( VFileInfo file ) : byte[]
file VFileInfo The file to extract.
Результат byte[]

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

Attempts to find a file by its path.
public Find ( string path ) : VFileInfo
path string The path of the file to find.
Результат VFileInfo

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

Adds a new file to the tag.
public Insert ( string name, string folder, byte fileData ) : void
name string The name of the file to add.
folder string The folder the file is located in.
fileData byte The file data.
Результат void

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

Removes a file from the tag.
public Remove ( VFileInfo file ) : void
file VFileInfo The file to remove.
Результат void

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

Replaces the specified file.
public Replace ( VFileInfo file, byte newData ) : void
file VFileInfo The file to replace.
newData byte The data to replace it with.
Результат void

Описание свойств

Data публичное свойство

Gets or sets the data block containing the data for every file.
public byte[] Data
Результат byte[]

Files публичное свойство

Gets or sets the files in the list.
public List Files
Результат List