public void Remove(PublisherAssertion value)
 {
     List.Remove(value);
 }
 public bool Contains(PublisherAssertion value)
 {
     return(List.Contains(value));
 }
 public int IndexOf(PublisherAssertion value)
 {
     return(List.IndexOf(value));
 }
 public void Insert(int index, PublisherAssertion value)
 {
     List.Insert(index, value);
 }
 public int Add(PublisherAssertion value)
 {
     return(List.Add(value));
 }
 /// ****************************************************************
 ///   public PublisherAssertion [constructor]
 /// ----------------------------------------------------------------
 ///   <summary>
 ///   </summary>
 /// ----------------------------------------------------------------
 ///   <param name="assertion">
 ///   </param>
 /// ****************************************************************
 ///
 public PublisherAssertion(PublisherAssertion assertion)
 {
     this.FromKey        = assertion.FromKey;
     this.ToKey          = assertion.ToKey;
     this.KeyedReference = assertion.KeyedReference;
 }