ProfileValues(String, String) Method |
Return a list of the (unnamed and named variables) under the given DriverID and subkey.
Namespace: ASCOM.UtilitiesAssembly: ASCOM.Utilities (in ASCOM.Utilities.dll) Version: 6.0.0.0 (6.6.9999.9999)
Syntaxpublic ArrayList Values(
string DriverID,
string SubKey
)
Public Function Values (
DriverID As String,
SubKey As String
) As ArrayList
public:
virtual ArrayList^ Values(
String^ DriverID,
String^ SubKey
) sealed
Parameters
- DriverID String
- ProgID of the device to read from
- SubKey String
- Subkey from the profile root in which to write the value
Return Value
ArrayListAn ArrayList of KeyValuePairs
RemarksThe returned object contains entries for each value. For each entry,
the Key property is the value's name, and the Value property is the string value itself. Note that the unnamed (default)
value will be included if it has a value, even if the value is a blank string. The unnamed value will have its entry's
Key property set to an empty string.
The KeyValuePair objects are instances of the KeyValuePair class
See Also