AddToRepository
अंतर्वस्तु
[
छिपाना
]
AddToRepository(Index)
इंडेक्स रिपॉजिटरी में एक इंडेक्स जोड़ता है।
public void AddToRepository(Index index)
पैरामीटर | प्रकार | विवरण |
---|---|---|
index | Index | जोड़ने के लिए सूचकांक। |
उदाहरण
उदाहरण दर्शाता है कि इंडेक्स रिपॉजिटरी में इंडेक्स कैसे जोड़ा जाए।
Index index = new Index();
IndexRepository indexRepository = new IndexRepository();
indexRepository.AddToRepository(index);
यह सभी देखें
- class Index
- class IndexRepository
- नाम स्थान GroupDocs.Search
- सभा GroupDocs.Search
AddToRepository(string)
इंडेक्स रिपॉजिटरी में एक इंडेक्स खोलता है और जोड़ता है।
public void AddToRepository(string indexFolder)
पैरामीटर | प्रकार | विवरण |
---|---|---|
indexFolder | String | अनुक्रमणिका फ़ोल्डर। |
उदाहरण
उदाहरण दर्शाता है कि इंडेक्स रिपॉजिटरी में इंडेक्स कैसे जोड़ा जाए।
string indexFolder = @"c:\MyIndex\";
IndexRepository indexRepository = new IndexRepository();
indexRepository.AddToRepository(indexFolder);
यह सभी देखें
- class IndexRepository
- नाम स्थान GroupDocs.Search
- सभा GroupDocs.Search