How can I use the Lync API to change current user "call forwarding" option to another SIP or a number?

Thanks

link|improve this question

50% accept rate
feedback

1 Answer

up vote 0 down vote accepted
private void OnIncomingAudioVideoCallReceived(object sender, CallReceivedEventArgs<AudioVideoCall> e)
    {
        // Forward incoming Audio calls OR accept call
        try
        {
            _logger.Info("Incoming call from " + e.RemoteParticipant.Uri);
             e.Call.Forward("sip:..");
        }
        catch (InvalidOperationException ioex)
        {
            _logger.Error("Failed forwarding incoming call", ioex);
        }
    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.