Playing a Recording warning tone - multiple registration method.

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • avc909912179786
    Member
    • Apr 2025
    • 3

    Playing a Recording warning tone - multiple registration method.

    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?
  • avc909912179786
    Member
    • Apr 2025
    • 3

    #2
    Found it. Using your ServiceProvider instance, call GetCallAssociated as follows...
    _serviceProvider.getCallAssociated.GenerateTelepho nyTones(evtDeviceIdAsString, null);

    Comment

    Loading