IExceptionManagerUpdateProperties Method |
Namespace: EdaIntegrationContract.Exceptions
void UpdateProperties()
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(); } }