IImportSetManagerById Method |
Namespace: EdaIntegrationContract.Import
IImportSet ById( int importSetId )
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"); IImportSet importSet = edaCase.Imports.ImportSets.ById(3); Console.WriteLine("Id: {0}, Label: {1}", importSet.Id, importSet.Label); } } /* This example produces the following results: Id: 3, Label: 2014-06-21-002 */