Example #1
0
		/// <summary>
		///    <para> Removes a specific <see cref='.PropertyInstance'/> from the 
		///    <see cref='.PropertyCollection'/> .</para>
		/// </summary>
		/// <param name='value'>The <see cref='.PropertyInstance'/> to remove from the <see cref='.PropertyCollection'/> .</param>
		/// <returns><para>None.</para></returns>
		/// <exception cref='System.ArgumentException'><paramref name='value'/> is not found in the Collection. </exception>
		public void Remove(PropertyInstance value) 
		{
			List.Remove(value);
		}
Example #2
0
		/// <summary>
		///     <para>
		///       Initializes a new instance of <see cref='.PropertyCollection'/> containing any array of <see cref='.PropertyInstance'/> objects.
		///    </para>
		/// </summary>
		/// <param name='value'>
		///       A array of <see cref='.PropertyInstance'/> objects with which to intialize the collection
		/// </param>
		public PropertyCollection(PropertyInstance[] value) 
		{
			this.AddRange(value);
		}
Example #3
0
		/// <summary>
		///    <para>Returns the index of a <see cref='.PropertyInstance'/> in 
		///       the <see cref='.PropertyCollection'/> .</para>
		/// </summary>
		/// <param name='value'>The <see cref='.PropertyInstance'/> to locate.</param>
		/// <returns>
		/// <para>The index of the <see cref='.PropertyInstance'/> of <paramref name='value'/> in the 
		/// <see cref='.PropertyCollection'/>, if found; otherwise, -1.</para>
		/// </returns>
		/// <seealso cref='.PropertyCollection.Contains'/>
		public int IndexOf(PropertyInstance value) 
		{
			return List.IndexOf(value);
		}
Example #4
0
		/// <summary>
		/// <para>Inserts a <see cref='.PropertyInstance'/> into the <see cref='.PropertyCollection'/> at the specified index.</para>
		/// </summary>
		/// <param name='index'>The zero-based index where <paramref name='value'/> should be inserted.</param>
		/// <param name=' value'>The <see cref='.PropertyInstance'/> to insert.</param>
		/// <returns><para>None.</para></returns>
		/// <seealso cref='.PropertyCollection.Add'/>
		public void Insert(int index, PropertyInstance value) 
		{
			List.Insert(index, value);
		}
Example #5
0
		/// <summary>
		/// <para>Gets a value indicating whether the 
		///    <see cref='.PropertyCollection'/> contains the specified <see cref='.PropertyInstance'/>.</para>
		/// </summary>
		/// <param name='value'>The <see cref='.PropertyInstance'/> to locate.</param>
		/// <returns>
		/// <para><see langword='true'/> if the <see cref='.PropertyInstance'/> is contained in the collection; 
		///   otherwise, <see langword='false'/>.</para>
		/// </returns>
		/// <seealso cref='.PropertyCollection.IndexOf'/>
		public bool Contains(PropertyInstance value) 
		{
			return List.Contains(value);
		}
Example #6
0
		/// <summary>
		/// <para>Copies the <see cref='.PropertyCollection'/> values to a one-dimensional <see cref='System.Array'/> instance at the 
		///    specified index.</para>
		/// </summary>
		/// <param name='array'><para>The one-dimensional <see cref='System.Array'/> that is the destination of the values copied from <see cref='.PropertyCollection'/> .</para></param>
		/// <param name='index'>The index in <paramref name='array'/> where copying begins.</param>
		/// <returns>
		///   <para>None.</para>
		/// </returns>
		/// <exception cref='System.ArgumentException'><para><paramref name='array'/> is multidimensional.</para> <para>-or-</para> <para>The number of elements in the <see cref='.PropertyCollection'/> is greater than the available space between <paramref name='arrayIndex'/> and the end of <paramref name='array'/>.</para></exception>
		/// <exception cref='System.ArgumentNullException'><paramref name='array'/> is <see langword='null'/>. </exception>
		/// <exception cref='System.ArgumentOutOfRangeException'><paramref name='arrayIndex'/> is less than <paramref name='array'/>'s lowbound. </exception>
		/// <seealso cref='System.Array'/>
		public void CopyTo(PropertyInstance[] array, int index) 
		{
			List.CopyTo(array, index);
		}
Example #7
0
		/// <summary>
		///    <para>Adds a <see cref='.PropertyInstance'/> with the specified value to the 
		///    <see cref='.PropertyCollection'/> .</para>
		/// </summary>
		/// <param name='value'>The <see cref='.PropertyInstance'/> to add.</param>
		/// <returns>
		///    <para>The index at which the new element was inserted.</para>
		/// </returns>
		/// <seealso cref='.PropertyCollection.AddRange'/>
		public int Add(PropertyInstance value) 
		{
			return List.Add(value);
		}
Example #8
0
		/// <summary>
		/// <para>Copies the elements of an array to the end of the <see cref='.PropertyCollection'/>.</para>
		/// </summary>
		/// <param name='value'>
		///    An array of type <see cref='.PropertyInstance'/> containing the objects to add to the collection.
		/// </param>
		/// <returns>
		///   <para>None.</para>
		/// </returns>
		/// <seealso cref='.PropertyCollection.Add'/>
		public void AddRange(PropertyInstance[] value) 
		{
			for (int i = 0; (i < value.Length); i = (i + 1)) 
			{
				this.Add(value[i]);
			}
		}
Example #9
0
 /// <summary>
 ///    <para> Removes a specific <see cref='.PropertyInstance'/> from the
 ///    <see cref='.PropertyCollection'/> .</para>
 /// </summary>
 /// <param name='value'>The <see cref='.PropertyInstance'/> to remove from the <see cref='.PropertyCollection'/> .</param>
 /// <returns><para>None.</para></returns>
 /// <exception cref='System.ArgumentException'><paramref name='value'/> is not found in the Collection. </exception>
 public void Remove(PropertyInstance value)
 {
     List.Remove(value);
 }
Example #10
0
 /// <summary>
 /// <para>Inserts a <see cref='.PropertyInstance'/> into the <see cref='.PropertyCollection'/> at the specified index.</para>
 /// </summary>
 /// <param name='index'>The zero-based index where <paramref name='value'/> should be inserted.</param>
 /// <param name=' value'>The <see cref='.PropertyInstance'/> to insert.</param>
 /// <returns><para>None.</para></returns>
 /// <seealso cref='.PropertyCollection.Add'/>
 public void Insert(int index, PropertyInstance value)
 {
     List.Insert(index, value);
 }
Example #11
0
 /// <summary>
 ///    <para>Returns the index of a <see cref='.PropertyInstance'/> in
 ///       the <see cref='.PropertyCollection'/> .</para>
 /// </summary>
 /// <param name='value'>The <see cref='.PropertyInstance'/> to locate.</param>
 /// <returns>
 /// <para>The index of the <see cref='.PropertyInstance'/> of <paramref name='value'/> in the
 /// <see cref='.PropertyCollection'/>, if found; otherwise, -1.</para>
 /// </returns>
 /// <seealso cref='.PropertyCollection.Contains'/>
 public int IndexOf(PropertyInstance value)
 {
     return(List.IndexOf(value));
 }
Example #12
0
 /// <summary>
 /// <para>Gets a value indicating whether the
 ///    <see cref='.PropertyCollection'/> contains the specified <see cref='.PropertyInstance'/>.</para>
 /// </summary>
 /// <param name='value'>The <see cref='.PropertyInstance'/> to locate.</param>
 /// <returns>
 /// <para><see langword='true'/> if the <see cref='.PropertyInstance'/> is contained in the collection;
 ///   otherwise, <see langword='false'/>.</para>
 /// </returns>
 /// <seealso cref='.PropertyCollection.IndexOf'/>
 public bool Contains(PropertyInstance value)
 {
     return(List.Contains(value));
 }
Example #13
0
 /// <summary>
 ///    <para>Adds a <see cref='.PropertyInstance'/> with the specified value to the
 ///    <see cref='.PropertyCollection'/> .</para>
 /// </summary>
 /// <param name='value'>The <see cref='.PropertyInstance'/> to add.</param>
 /// <returns>
 ///    <para>The index at which the new element was inserted.</para>
 /// </returns>
 /// <seealso cref='.PropertyCollection.AddRange'/>
 public int Add(PropertyInstance value)
 {
     return(List.Add(value));
 }