Exemplo n.º 1
0
        public void OnCallRedirected(CallRedirected args)
        {
            var ea = new CallRedirectedEventArgs()
            {
                CallId = args.Id,
                Target = args.Target,
                Option = args.Option
            };

            CallRedirected(this, ea);
            args.Option = ea.Option;
        }
Exemplo n.º 2
0
 static void CallRedirected(object sender, CallRedirectedEventArgs e)
 {
     e.Option = RedirectOption.Accept;
 }
Exemplo n.º 3
0
 public void OnCallRedirected(CallRedirected args)
 {
     var ea = new CallRedirectedEventArgs()
                  {
                      CallId = args.Id,
                      Target = args.Target,
                      Option = args.Option
                  };
     CallRedirected(this, ea);
     args.Option = ea.Option;
 }