Exemple #1
0
        public void ReceiveCall(Call call)
        {
            if (call == null)
            {
                throw new ArgumentNullException("call");
            }

            linphone.ReceiveCall(call);
        }
Exemple #2
0
        public void ReceiveCall(Call call)
        {
            if (connectState != ConnectState.Connected)
            {
                throw new InvalidOperationException("not connected");
            }
            if (call == null)
            {
                throw new ArgumentNullException("call");
            }

            linphone.ReceiveCall(call);
        }