Click or drag to resize

ISourceManagerByCustodian Method

Retrieves the list of Sources for a particular custodian

Namespace:  EdaIntegrationContract.Import
Assembly:  EdaIntegration.Contract (in EdaIntegration.Contract.dll) Version: 7.6
Syntax
C#
IEnumerable<ISource> ByCustodian(
	int custodianId
)

Parameters

custodianId
Type: SystemInt32
The unique identifier of the custodian

Return Value

Type: IEnumerableISource
A list of ISources associated with a Custodian
Examples
The following example demonstrates retrieving the a list of sources for a custodian.
C#
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");

        int custodianId = 4;
        foreach (ISource s in edaCase.Sources.ByCustodian(custodianId))
        {
            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)

 */
See Also