ITagManagerAll Method |
Namespace: EdaIntegrationContract.Tagging
using EdaIntegrationContract; using EdaIntegrationContract.Case; using EdaIntegrationContract.Tagging; class Sample { static void Main() { var edaIntegration = new EdaIntegration().ConnectToExplore(); ICase edaCase = edaIntegration.Cases.OpenCaseByName("Case 1"); // Create tags edaCase.Tags.Create("Privileged"); edaCase.Tags.Create("Responsive"); foreach (ITag 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 */