Click or drag to resize

IExportManagerUpdateProperties Method

Saves the export properties to the case.

Namespace:  EdaIntegrationContract.Exports
Assembly:  EdaIntegration.Contract (in EdaIntegration.Contract.dll) Version: 1.0
Syntax
C#
void UpdateProperties()
Remarks
Modifications to the properties are not saved to the case until UpdateProperties is called.
Examples
The following example demonstrates updating the Export properties for a case.
C#
using EdaIntegrationContract;
using EdaIntegrationContract.Case;
using EdaIntegrationContract.Exports;

class Sample
{
    public static void Main()
    {
        var edaIntegration = new EdaIntegration().ConnectToExplore();
        ICase edaCase = edaIntegration.Cases.OpenCaseByName("Case 1");

        edaCase.Exports.Properties.MaxExportAgents = 4;
        edaCase.Exports.Properties.TimeZoneId = System.TimeZoneInfo.Utc.Id;
        edaCase.Exports.UpdateProperties();
    }
}
See Also