RvGet_AllXml
|
VoiceGuide COM Reference
|
Returns all the Result Variables
current for the specified line in XML-ish format
Syntax
sResult =
object.RvGet_AllXml(iLineId)
|
Part
|
Description
|
|
|
object
|
VoiceGuide object
|
|
|
iLineId
|
Identification number of the line
|
|
| sResult
|
Result Variables currently defined for the
selected line. Returned on XML-ish format
|
|
Remarks
The returned data defines each
variable in XML format, but no XML headers or footers are
supplied.
Result Variables are reset at the
beginning of a new call. Hence they are available for querying
after the call has finished, but before a new call has begun on the
same line.
Example
set vg =
CreateObject("vgServices.CommandLink")
'see what Result Varaibles are currently defined on current
line
sReturnValue = vg.RvGet_AllXml($RV_LINEID)
set vg = Nothing
MsgBox sReturnValue
|