IEmailThreadingPropertiesEmailThreadingEnabled Property |
Namespace: EdaIntegrationContract.EmailThreading
using Law.EdaIntegration; class Sample { public static void Main() { EdaIntegration edaIntegration = EdaIntegration.ConnectToExplore(); Case edaCase = edaIntegration.Cases.OpenCaseByName("Case 1"); // Set the EmailThreadingEnabled value edaCase.EmailThreading.Properties.EmailThreadingEnabled = true; // Save the changes to the case edaCase.EmailThreading.UpdateProperties(); // Get the value Console.WriteLine("EmailThreadingEnabled: {0}", edaCase.EmailThreading.Properties.EmailThreadingEnabled); } } /* This example produces the following results: EmailThreadingEnabled: True */