IndexRepositoryCreate Method |
Creates a new index in memory.
Namespace: GroupDocs.SearchAssembly: GroupDocs.Search (in GroupDocs.Search.dll) Version: 21.8
SyntaxPublic Function Create As Index
member Create : unit -> Index
Return Value
Type:
IndexThe created index.
Examples
The example demonstrates how to create an index in memory through the index repository.
IndexRepository indexRepository = new IndexRepository();
Index index = indexRepository.Create();
See Also