Click or drag to resize
LegacyTelogisServiceListConditionTypes Method
Print this page
Gets an array of all Verizon Connect Fleet ConditionTypes. See example.

Namespace: Telogis.API
 
Syntax
public ConditionType[] ListConditionTypes()

Return Value

Type: ConditionType
An array of ConditionType objects. See example.
Examples
C#
ConditionType[] conditionTypes = myService.ListConditionTypes();
foreach (ConditionType ct in conditionTypes) {
    Console.WriteLine("{0}\n-{1}\n-{2}\n", ct.Name, ct.Description, ct.Instructions);
}
/* Output snippet:
Stopped
-Vehicle is stopped at a location for longer than specified time
-Send on trigger only for best results.
Stopped not at any marker
-Vehicle stops at a location that is not a Marker
-Use trigger time to specify minimum time on site.
Usage
-Vehicle is used outside specified hours
-Send on trigger only for best results.
...*/
See Also