Click or drag to resize
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 Tag[] ListTags()

Return Value

Type: Tag
An array of Tag objects.
Examples
The following code snippet prints all your tags.
C#
Tag[] tags = myService.ListTags();
foreach (Tag t in tags) {
    Console.WriteLine("[{0}]", t.Name);
}
See Also