Click or drag to resize

IExportManagerAll Method

Retrieves the list of Exports for a case.

Namespace:  EdaIntegrationContract.Exports
Assembly:  EdaIntegration.Contract (in EdaIntegration.Contract.dll) Version: 1.0
Syntax
C#
IEnumerable<IExport> All()

Return Value

Type: IEnumerableIExport
A list of IExports. If no exports exist for a case then an empty list is returned.
Examples
The following example demonstrates retrieving the a list of exports 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");

        foreach (IExport export in edaCase.Exports.All())
        {
            Console.WriteLine("Name: {0}", export.Name);
            Console.WriteLine("Type: {0}", export.Type);
            Console.WriteLine("Scope: {0}", export.Config.Scope);
            Console.WriteLine("Last Run: {0}", export.LastRun);
            Console.WriteLine("Total Documents: {0}", export.TotalDocuments);
            Console.WriteLine("Error Count: {0}", export.NumErrors);
            Console.WriteLine("");
        }
    }
}
/*
This example produces the following results:

Name: Export-001
Type: Native
Scope: Filtered
Last Run: 7/24/2014 6:30:59 PM
Total Documents: 21049
Error Count: 2

Name: Export-002
Type: Native
Scope: Tagged
Last Run: 7/24/2014 10:08:14 PM
Total Documents: 1656
Error Count: 0*/
See Also