Click or drag to resize

IExportManagerStart Method

Starts the processing to export the designated documents

Namespace:  EdaIntegrationContract.Exports
Assembly:  EdaIntegration.Contract (in EdaIntegration.Contract.dll) Version: 7.6
Syntax
C#
void Start(
	int exportId
)

Parameters

exportId
Type: SystemInt32
The unique identifier of the export to process
Exceptions
ExceptionCondition
EdaApiExceptionThrown if an export with the provided id does not exist
Examples
The following example demonstrates how to start the export processing 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");
        IExport export = edaCase.Exports.ByName("Export-001");
        edaCase.Exports.Start(exportId);
    }
}
See Also