| CustodianManagerUpdate Method |
Updates Early Data Analyzer with any changed values for the custodian (also see Remarks below)
Namespace:
Law.EdaIntegration.Import
Assembly:
Law.EdaIntegration (in Law.EdaIntegration.dll) Version: 7.2
Syntax Exceptions Remarks
If any documents belonging to the custodian have already been indexed, and the custodian's
name is changed, then the case will automatically be queued to re-index so that the index
can be refreshed with the new custodian name.
Examples
This example demonstrates updating the name of an existing custodian.
using Law.EdaIntegration;
using Law.EdaIntegration.Case;
using Law.EdaIntegration.Import;
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");
Custodian custodian = edaCase.Custodians.ByName("Custodian 3");
Console.WriteLine("({0}) {1}", custodian.Id, custodian.Name);
custodian.Name = "Third custodian";
edaCase.Custodians.Update(custodian);
Console.WriteLine("({0}) {1}", custodian.Id, custodian.Name);
try
{
Custodian prevCustodian = edaCase.Custodians.ByName("Custodian 3");
}
catch (EdaApiException ex)
{
Console.WriteLine("Exception: {0}", ex.Message);
}
}
}
See Also