Click or drag to resize

IImportManagerUpdateProperties Method

Saves the import properties to the case.

Namespace:  EdaIntegrationContract.Import
Assembly:  EdaIntegration.Contract (in EdaIntegration.Contract.dll) Version: 1.0
Syntax
C#
void UpdateProperties()
Remarks
Modifications to the properties are not saved to the case until UpdateProperties is called.
Examples
The following example demonstrates updating the properties for a case.
C#
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();
    }
}
See Also