You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Gets all the keys of an SRP Hash Table in no particular order.

Syntax

KeyList = SRP_HashTable("GetKeys", Handle, Delim)

Returns

A delimited list of the keys stored in the hash table

Parameters

ParameterDescription
HandleHandle to an existing SRP Hash Table (REQUIRED)
DelimDelimiter to insert between keys (OPTIONAL)

Remarks

The GetKeys service returns all the keys stored in the hash table as a delimited list. The list will be delimited by the character you pass through the Delim parameter. If you omit the Delim parameter, then the list will be delimited by field marks.

Examples

// Get the keys delimited by field marks
KeyList = SRP_HashTable("GetKeys", Handle)

// Get the keys delimited by commas
KeyList = SRP_HashTable("GetKeys", Handle, ",")
  • No labels