Exemplo n.º 1
0
 public void AddForwardDestination(ForwardDestination fc)
 {
     if (fc != null)
     {
         if (this.forwards.ContainsKey(fc.Key))
         {
             this.forwards.Remove(fc.Key);
             try
             {
                 fc.Remove();
             }
             catch
             {
             }
         }
         this.forwards.Add(fc.Key, fc);
         OnForwardDestinationsUpdated();
     }
 }
Exemplo n.º 2
0
 public void RemoveForwardDestination(ForwardDestination fc)
 {
     if (this.forwards.ContainsKey(fc.Key))
     {
         this.forwards.Remove(fc.Key);
         try
         {
             fc.Remove();
         }
         catch
         {
         }
     }
     OnForwardDestinationsUpdated();
 }
Exemplo n.º 3
0
        public virtual void Update(ForwardDestination fd)

        {
            throw new NotImplementedException();
        }
Exemplo n.º 4
0
        public virtual void Initialize(bool isSubscription, ForwardDestinationListItem fdli, ForwardDestination fd)

        {
            throw new NotImplementedException();
        }
 public virtual void Update(ForwardDestination fd)
 {
     throw new NotImplementedException();
 }
 public virtual void Initialize(bool isSubscription, ForwardDestinationListItem fdli, ForwardDestination fd)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 7
0
 public void EditForwardDestination(ForwardDestination fc)
 {
     SaveForwardPrefs();
 }