IImportManagerUpdateProperties Method |
Namespace: EdaIntegrationContract.Import
void UpdateProperties()
using EdaIntegrationContract; using EdaIntegrationContract.Case; using EdaIntegrationContract.Import; class Sample { public static void Main() { var edaIntegration = new EdaIntegration().ConnectToExplore(); ICase edaCase = edaIntegration.Cases.OpenCaseByName("Case 1"); // Set the MaxAnalysisAgents value edaCase.Imports.Properties.MaxAnalysisAgents = 4; // Save the changes to the case edaCase.Imports.UpdateProperties(); } }