Cisco Cisco Computer Telephony Integration Option 8.5 Developer's Guide

Page of 668
 
12-25
CTI OS Developer’s Guide for Cisco ICM/IPCC Enterprise & Hosted Editions Release 7.1(1)
 
Chapter 12      Helper Classes
Arguments Class
Boolean GetValueBoolObj(String sKey)
String GetValueString(int iKey)
String    GetValueString(String sKey)
.NET:
Boolean GetValue(System.String sKey, out Arg obArg)
Boolean GetValueInt(System.String sKey, out System.Int32
nValue)
Boolean GetValueUInt(System.String sKey, out System.Int64
nValue )
Boolean GetValueShort(System.String sKey, out System.Int16
nValue)
Boolean GetValueUShort(System.String sKey,out System.Int32
nValue)
Boolean GetValueBool(System.String sKey, out System.Boolean
bValue)
Boolean GetValueString(System.String sKey, out System.String
strValue)
Boolean GetValueArray(System.String sKey, out Arguments
arArguments)
Boolean GetValue(Enum_CtiOs eKey, out Arg obArg)
Boolean GetValueInt(Enum_CtiOs eKey, out System.Int32 nValue)
Boolean GetValueShort(Enum_CtiOs eKey, out System.Int16 nValue)
Boolean GetValueUShort(Enum_CtiOs eKey, out System.Int32
nValue)
Boolean GetValueBool(Enum_CtiOs eKey, out System.Boolean
bValue)
Boolean GetValueString(Enum_CtiOs eKey, out System.String
strValue)
Boolean GetValueArray(Enum_CtiOs eKey, out Arguments
arArguments)
Parameters
An enumerated keyword (see 
) or a string specifying the keyword of the value to be retrieved.
Return Values
In C++, the two-parameter version returns a boolean indicating success or failure. 
The one- parameter version returns the value and throws an exception upon 
failure.
COM returns an HRESULT. See also 
Java methods return a null object if the method fails.