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