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