Exemple #1
0
 public void Remove(PublisherAssertion value)
 {
     List.Remove(value);
 }
Exemple #2
0
 public bool Contains(PublisherAssertion value)
 {
     return(List.Contains(value));
 }
Exemple #3
0
 public int IndexOf(PublisherAssertion value)
 {
     return(List.IndexOf(value));
 }
Exemple #4
0
 public void Insert(int index, PublisherAssertion value)
 {
     List.Insert(index, value);
 }
Exemple #5
0
 public int Add(PublisherAssertion value)
 {
     return(List.Add(value));
 }
Exemple #6
0
 public PublisherAssertion(PublisherAssertion assertion)
 {
     this.FromKey        = assertion.FromKey;
     this.ToKey          = assertion.ToKey;
     this.KeyedReference = assertion.KeyedReference;
 }