IEmailThreadingManagerUpdateProperties Method |
Namespace: EdaIntegrationContract.EmailThreading
void UpdateProperties()
using EdaIntegrationContract; using EdaIntegrationContract.Case; using EdaIntegrationContract.EmailThreading; class Sample { static void Main() { var edaIntegration = new EdaIntegration().ConnectToExplore(); ICase edaCase = edaIntegration.Cases.OpenCaseByName("Case 1"); // Set the NearDupeComparisonThreshold value edaCase.EmailThreading.Properties.Enabled = true; // Save the changes to the case edaCase.EmailThreading.UpdateProperties(); } }