AddToRepository
Contenu
[
Cacher
]
AddToRepository(Index)
Ajoute un index au référentiel d’index.
public void AddToRepository(Index index)
Paramètre | Taper | La description |
---|---|---|
index | Index | Index à ajouter. |
Exemples
L’exemple montre comment ajouter un index au référentiel d’index.
Index index = new Index();
IndexRepository indexRepository = new IndexRepository();
indexRepository.AddToRepository(index);
Voir également
- class Index
- class IndexRepository
- espace de noms GroupDocs.Search
- Assemblée GroupDocs.Search
AddToRepository(string)
Ouvre et ajoute un index au référentiel d’index.
public void AddToRepository(string indexFolder)
Paramètre | Taper | La description |
---|---|---|
indexFolder | String | Le dossier d’index. |
Exemples
L’exemple montre comment ajouter un index au référentiel d’index.
string indexFolder = @"c:\MyIndex\";
IndexRepository indexRepository = new IndexRepository();
indexRepository.AddToRepository(indexFolder);
Voir également
- class IndexRepository
- espace de noms GroupDocs.Search
- Assemblée GroupDocs.Search