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