AddToRepository

AddToRepository(Index)

Добавляет индекс в репозиторий индексов.

public void AddToRepository(Index index)
Параметр Тип Описание
index Index Добавляемый индекс.

Примеры

Пример демонстрирует, как добавить индекс в репозиторий индексов.

Index index = new Index();

IndexRepository indexRepository = new IndexRepository();

indexRepository.AddToRepository(index);

Смотрите также


AddToRepository(string)

Открывает и добавляет индекс в репозиторий индексов.

public void AddToRepository(string indexFolder)
Параметр Тип Описание
indexFolder String Индексная папка.

Примеры

Пример демонстрирует, как добавить индекс в репозиторий индексов.

string indexFolder = @"c:\MyIndex\";

IndexRepository indexRepository = new IndexRepository();

indexRepository.AddToRepository(indexFolder);

Смотрите также