/// <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)); }
public void Remove(ProcessingError value) { InnerList.Remove(value); }
/// <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)); }