コード例 #1
0
 /// <summary>
 /// Overloaded method.
 /// Determines in the collection contains the given ProcessingError.
 /// </summary>
 /// <param name="value">The ProcessingError to search for.</param>
 /// <returns>Whether the collection contains the ProcessingError.</returns>
 public bool Contains(ProcessingError value)
 {
     return (InnerList.Contains(value));
 }
コード例 #2
0
 public void Remove(ProcessingError value)
 {
     InnerList.Remove(value);
 }
コード例 #3
0
 /// <summary>
 /// Add a new ProcessingError to the collection.
 /// </summary>
 /// <param name="value">The ProcessingError to add to the collection</param>
 /// <returns>an integer value of the index of the item added</returns>
 public int Add(ProcessingError value)
 {
     return (InnerList.Add(value));
 }