IImportPropertiesPasswords Property |
Namespace: EdaIntegrationContract.Import
using Law.EdaIntegration; class Sample { public static void Main() { EdaIntegration edaIntegration = EdaIntegration.ConnectToExplore(); Case edaCase = edaIntegration.Cases.OpenCaseByName("Case 1"); // Create the list of passwords List<string> passwords = new List<string> { "abcdef", "123456", "qwerty" }; // Set the Passwords list edaCase.Imports.Properties.Passwords = passwords; // Save the changes to the case edaCase.Imports.UpdateProperties(); // Get the value foreach (string pwd in edaCase.Imports.Properties.Passwords) { Console.WriteLine("Password: {0}", pwd); } } } /* This example produces the following results: Password: abcdef Password: 123456 Password: qwerty */