Exemplo n.º 1
0
 /// <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);
 }
Exemplo n.º 2
0
 /// <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);
 }
Exemplo n.º 3
0
 /// <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));
 }
Exemplo n.º 4
0
 /// <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));
 }
Exemplo n.º 5
0
 /// <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);
 }