Ejemplo n.º 1
0
        /// <summary>
        /// Retrieves the state of a call.
        /// </summary>
        /// <param name="callIndex"></param>
        /// <returns></returns>
        public ToxAvCallState GetCallState(int callIndex)
        {
            if (_disposed)
            {
                throw new ObjectDisposedException(GetType().FullName);
            }

            return(ToxAvFunctions.GetCallState(_toxAv, callIndex));
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Retrieves the state of a call.
        /// </summary>
        /// <param name="callIndex"></param>
        /// <returns></returns>
        public ToxAvCallState GetCallState(int callIndex)
        {
            ThrowIfDisposed();

            return(ToxAvFunctions.GetCallState(_toxAv, callIndex));
        }