In the AES8.1 DMCC .NET API Programmers Guide, it says on page 116 that recording warning tones can be enabled as follows...
"Playing a recording warning tone - multiple registration method"
To use the Multiple Registration method, a recording application registers to the same extension (in either dependent or independent DependencyMode) of the user that is taking the calls to be recorded. Prior to the user accepting any calls, the recording application sends a GenerateTelephonyTone request for the extension to which it is registered. When the (Main) user answers a call, the recording application is automatically connected to the call and a warning tone is played.
I tried adding a call to the CallAssociated.GenerateTelephonyTones(string deviceID, object userState) method like this: CallAssociated.GenerateTelephonyTones(evtDeviceIdA sString, userState); but intellisense flags an error indicating that "an object reference is required" to call the method.
How would I go about getting a CallAssociated class instance?
"Playing a recording warning tone - multiple registration method"
To use the Multiple Registration method, a recording application registers to the same extension (in either dependent or independent DependencyMode) of the user that is taking the calls to be recorded. Prior to the user accepting any calls, the recording application sends a GenerateTelephonyTone request for the extension to which it is registered. When the (Main) user answers a call, the recording application is automatically connected to the call and a warning tone is played.
I tried adding a call to the CallAssociated.GenerateTelephonyTones(string deviceID, object userState) method like this: CallAssociated.GenerateTelephonyTones(evtDeviceIdA sString, userState); but intellisense flags an error indicating that "an object reference is required" to call the method.
How would I go about getting a CallAssociated class instance?
Comment