IImportSetManagerByLabel Method |
Namespace: EdaIntegrationContract.Import
IImportSet ByLabel( string importSetLabel )
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.ByLabel("Local Data"); Console.WriteLine("Id: {0}, Label: {1}", importSet.Id, importSet.Label); } } /* This example produces the following results: Id: 4, Label: Local Data */