EmailThreadingPropertiesEmailThreadingEnabled Property |
Namespace: Law.EdaIntegration.EmailThreading
using Law.EdaIntegration; class Sample { public static void Main() { string connectionString = @"Data Source=localhost;Initial Catalog=EDA_Management;Integrated Security=False;User ID=myUserId;Password=myPassword"; EdaIntegration edaIntegration = new EdaIntegration(); edaIntegration.InitializeEnvironment(connectionString); 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 */