Add
Add(string)
Voert indexering uit. Voegt een bestand of map toe via een absoluut of relatief pad. Documenten uit alle submappen worden geïndexeerd.
public void Add(string path)
Parameter | Type | Beschrijving |
---|---|---|
path | String | Het pad naar een te indexeren bestand of map. |
Voorbeelden
Het voorbeeld laat zien hoe u documenten toevoegt aan een index.
string indexFolder = @"c:\MyIndex\";
string folderPath = @"c:\MyDocuments\";
string filePath = @"c:\Documents\MyFile.txt";
Index index = new Index(indexFolder); // Index maken in de opgegeven map
index.Add(folderPath); // Documenten indexeren in de opgegeven map
index.Add(filePath); // Het opgegeven document indexeren
Zie ook
- class Index
- naamruimte GroupDocs.Search
- montage GroupDocs.Search
Add(string, IndexingOptions)
Voert indexering uit. Voegt een bestand of map toe via een absoluut of relatief pad. Documenten uit alle submappen worden geïndexeerd.
public void Add(string path, IndexingOptions options)
Parameter | Type | Beschrijving |
---|---|---|
path | String | Het pad naar een te indexeren bestand of map. |
options | IndexingOptions | De indexeringsopties. |
Voorbeelden
Het voorbeeld laat zien hoe u documenten kunt toevoegen aan een index met bepaalde indexeringsopties.
string indexFolder = @"c:\MyIndex\";
string folderPath = @"c:\MyDocuments\";
string filePath = @"c:\Documents\MyFile.txt";
Index index = new Index(indexFolder); // Index maken in de opgegeven map
IndexingOptions options = new IndexingOptions();
options.Threads = 2; // Het aantal indexthreads instellen
index.Add(folderPath, options); // Documenten indexeren in de opgegeven map
index.Add(filePath, options); // Het opgegeven document indexeren
Zie ook
- class IndexingOptions
- class Index
- naamruimte GroupDocs.Search
- montage GroupDocs.Search
Add(string[])
Voert indexering uit. Voegt bestanden of mappen toe via een absoluut of relatief pad. Documenten uit alle submappen worden geïndexeerd.
public void Add(string[] paths)
Parameter | Type | Beschrijving |
---|---|---|
paths | String[] | De paden naar bestanden of mappen die moeten worden geïndexeerd. |
Voorbeelden
Het voorbeeld laat zien hoe u documenten toevoegt aan een index.
string indexFolder = @"c:\MyIndex\";
string folderPath = @"c:\MyDocuments\";
string filePath = @"c:\Documents\MyFile.txt";
Index index = new Index(indexFolder); // Index maken in de opgegeven map
string[] paths = new string[] { folderPath, filePath };
index.Add(paths); // Documenten indexeren op de opgegeven paden
Zie ook
- class Index
- naamruimte GroupDocs.Search
- montage GroupDocs.Search
Add(string[], IndexingOptions)
Voert indexering uit. Voegt bestanden of mappen toe via een absoluut of relatief pad. Documenten uit alle submappen worden geïndexeerd.
public void Add(string[] paths, IndexingOptions options)
Parameter | Type | Beschrijving |
---|---|---|
paths | String[] | De paden naar bestanden of mappen die moeten worden geïndexeerd. |
options | IndexingOptions | De indexeringsopties. |
Voorbeelden
Het voorbeeld laat zien hoe u documenten kunt toevoegen aan een index met bepaalde indexeringsopties.
string indexFolder = @"c:\MyIndex\";
string folderPath = @"c:\MyDocuments\";
string filePath = @"c:\Documents\MyFile.txt";
Index index = new Index(indexFolder); // Index maken in de opgegeven map
IndexingOptions options = new IndexingOptions();
options.Threads = 2; // Het aantal indexthreads instellen
string[] paths = new string[] { folderPath, filePath };
index.Add(paths, options); // Documenten indexeren op de opgegeven paden
Zie ook
- class IndexingOptions
- class Index
- naamruimte GroupDocs.Search
- montage GroupDocs.Search
Add(Document[], IndexingOptions)
Voert indexering uit. Voegt documenten toe vanuit bestandssysteem, stream of structuur.
public void Add(Document[] documents, IndexingOptions options)
Parameter | Type | Beschrijving |
---|---|---|
documents | Document[] | De documenten uit bestandssysteem, stream of structuur. |
options | IndexingOptions | De indexeringsopties. |
Zie ook
- class Document
- class IndexingOptions
- class Index
- naamruimte GroupDocs.Search
- montage GroupDocs.Search
Add(ExtractedData[], IndexingOptions)
Voert indexering uit. Voegt de geëxtraheerde gegevens toe aan de index.
public void Add(ExtractedData[] data, IndexingOptions options)
Parameter | Type | Beschrijving |
---|---|---|
data | ExtractedData[] | De geëxtraheerde gegevens. |
options | IndexingOptions | De indexeringsopties. |
Zie ook
- class ExtractedData
- class IndexingOptions
- class Index
- naamruimte GroupDocs.Search
- montage GroupDocs.Search