Click or drag to resize

IEmailThreadingManagerUpdateProperties Method

Saves the IEmailThreadingProperties to the case.

Namespace:  EdaIntegrationContract.EmailThreading
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 Email Threading properties for a case.
C#
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();
    }
}
See Also