| ITagManagerByName Method |
Retrieves a tag by its name.
Namespace:
EdaIntegrationContract.Tagging
Assembly:
EdaIntegration.Contract (in EdaIntegration.Contract.dll) Version: 1.0
Syntax ITag ByName(
string tagName
)
Parameters
- tagName
- Type: SystemString
The name of the tag to find.
Return Value
Type:
ITagThe tag matching the supplied tag name.
Exceptions Exception | Condition |
---|
EdaApiException | Thrown if a tag cannot be found with the specified name. |
Examples
The following example demonstrates retrieving a tag using its name.
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");
ITag tag = edaCase.Tags.Create("Privileged");
ITag itemById = edaCase.Tags.ByName(tag.Name);
Console.WriteLine("Id: {0}", itemById.Id);
Console.WriteLine("Name: {0}", itemById.Name);
}
}
See Also