IIndexManagerUpdateProperties Method |
Namespace: EdaIntegrationContract.Indexing
void UpdateProperties()
using EdaIntegrationContract; using EdaIntegrationContract.Case; using EdaIntegrationContract.Indexing; class Sample { public static void Main() { var edaIntegration = new EdaIntegration().ConnectToExplore(); ICase edaCase = edaIntegration.Cases.OpenCaseByName("Case 1"); edaCase.Index.Properties.IndexingEnabled = true; edaCase.Index.Properties.MaxIndexingWorkers = 4; // Save the changes to the case edaCase.Index.UpdateProperties(); } }