LegacyTelogisServiceListTags Method |
Print this page
Gets all your tags. You should use tags to label, group and sort
your assets (such as drivers, units and fleets).
Namespace: Telogis.API Syntax Public Function ListTags As Tag()
Return Value
Type:
Tag
An array of
Tag
objects.
Examples
The following code snippet prints all your tags.
Tag[] tags = myService.ListTags();
foreach (Tag t in tags) {
Console.WriteLine("[{0}]", t.Name);
}
See Also