updateIndex() public method

public updateIndex ( IndexingAction>.Dictionary datasetsToIndex ) : void
datasetsToIndex IndexingAction>.Dictionary
return void
コード例 #1
0
ファイル: SearchProvider.cs プロジェクト: BEXIS2/Core
        public void UpdateIndex(Dictionary<long, IndexingAction> datasetsToIndex)
        {
            BexisIndexer bexisIndexer = new BexisIndexer();
            bexisIndexer.updateIndex(datasetsToIndex);

            Reload();
        }