Click or drag to resize

IExceptionManagerUpdateProperties Method

Saves the exception properties to the case.

Namespace:  EdaIntegrationContract.Exceptions
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.Exceptions;

class Sample
{
    static void Main()
    {
        var edaIntegration = new EdaIntegration().ConnectToExplore();
        ICase edaCase = edaIntegration.Cases.OpenCaseByName("Case 1");

        // Turn off conditional exceptions
        edaCase.Exceptions.Properties.ExceptionsForConditionalAnalysis = false;            

        // Save the changes to the case
        edaCase.Exceptions.UpdateProperties();
    }
}
See Also