ISourceManagerAll Method |
Namespace: EdaIntegrationContract.Import
using EdaIntegrationContract; using EdaIntegrationContract.Case; using EdaIntegrationContract.Import; class Sample { public static void Main() { var edaIntegration = new EdaIntegration().ConnectToExplore(); ICase edaCase = edaIntegration.Cases.OpenCaseByName("Case 1"); foreach (ISource s in edaCase.Sources.All()) { Console.WriteLine("Id: " + s.Id); Console.WriteLine("Name: " + s.Name); Console.WriteLine("Type: " + s.Type); Console.WriteLine("CustodianId: " + s.CustodianId); Console.WriteLine("Description: " + s.Description); Console.WriteLine(""); } } } /* This example produces the following results: Id: 15 Name: Documents Type: Folder CustodianId: 4 Description: \\NetworkDrive\Folder1\Folder2\Documents Id: 16 Name: Folder 1 Type: Files CustodianId: 4 Description: \\NetworkDrive\Folder1 (3 files) */