Exemplo n.º 1
0
        public void ResumeCall(string channelId, Action action)
        {
            if (!_amiManager.ResumeCallRecord(channelId, out string message))
            {
                throw new AmiException($"Unable to resume call: {message}");
            }

            action.Invoke();
        }