LegacyTelogisServiceFindDrivers Method |
Print this page
Finds Drivers with a matching tag (if its supplied non-null) and matching properties.
All fields have to match.
Namespace: Telogis.API Syntax public Driver[] FindDrivers(
string tag,
Property[] properties
)
Public Function FindDrivers (
tag As String,
properties As Property()
) As Driver()
Parameters
- tag
- Type: SystemString
Only drivers with tags that match this value will be returned.
Use null to match all tags.
- properties
- Type: Telogis.APIProperty
An array of properties to filter drivers on. A driver
with properties A and B will not match a search for markers with property A,
regardless of the property A value. Use null to match all property combinations.
Return Value
Type:
Driver
An array of drivers matching the given tag and properties.
Remarks
A Driver without every property specified in the properties argument
will not be found by this query.
Examples See Also