TagManagerAll Method |
Namespace: Law.EdaIntegration.Tagging
using Law.EdaIntegration; using Law.EdaIntegration.Case; using Law.EdaIntegration.Tagging; class Sample { public static void Main() { string connectionString = @"Data Source=localhost;Initial Catalog=EDA_Management;Integrated Security=False;User ID=myUserId;Password=myPassword"; EdaIntegration edaIntegration = new EdaIntegration(); edaIntegration.InitializeEnvironment(connectionString); Case edaCase = edaIntegration.Cases.OpenCaseByName("Case 1"); // Create tags edaCase.Tags.Create("Privileged"); edaCase.Tags.Create("Responsive"); foreach (Tag tag in edaCase.Tags.All()) { Console.WriteLine("Id: " + tag.Id); Console.WriteLine("Name: " + tag.Name); } } } /* This example produces the following results: Id: 1 Name: Privileged Id: 2 Name: Responsive */