/// <summary> /// Removes the first occurrence of a specific RssCategory from this RssCategoryCollection. /// </summary> /// <param name="value"> /// The RssCategory value to remove from this RssCategoryCollection. /// </param> public virtual void Remove(RssCategory value) { this.List.Remove(value); }
/// <summary> /// Inserts an element into the RssCategoryCollection at the specified index /// </summary> /// <param name="index"> /// The index at which the RssCategory is to be inserted. /// </param> /// <param name="value"> /// The RssCategory to insert. /// </param> public virtual void Insert(int index, RssCategory value) { this.List.Insert(index, value); }
/// <summary> /// Determines whether a specfic RssCategory value is in this RssCategoryCollection. /// </summary> /// <param name="value"> /// The RssCategory value to locate in this RssCategoryCollection. /// </param> /// <returns> /// true if value is found in this RssCategoryCollection; /// false otherwise. /// </returns> public virtual bool Contains(RssCategory value) { return(this.List.Contains(value)); }
/// <summary> /// Return the zero-based index of the first occurrence of a specific value /// in this RssCategoryCollection /// </summary> /// <param name="value"> /// The RssCategory value to locate in the RssCategoryCollection. /// </param> /// <returns> /// The zero-based index of the first occurrence of the _ELEMENT value if found; /// -1 otherwise. /// </returns> public virtual int IndexOf(RssCategory value) { return(this.List.IndexOf(value)); }
/// <summary> /// Adds an instance of type RssCategory to the end of this RssCategoryCollection. /// </summary> /// <param name="value"> /// The RssCategory to be added to the end of this RssCategoryCollection. /// </param> public virtual void Add(RssCategory value) { this.List.Add(value); }