示例#1
0
		/// <summary>
		///    <para>Adds a <see cref='.FTPClient'/> with the specified value to the 
		///    <see cref='.FTPClientCollection'/> .</para>
		/// </summary>
		/// <param name='value'>The <see cref='.FTPClient'/> to add.</param>
		/// <returns>
		///    <para>The index at which the new element was inserted.</para>
		/// </returns>
		/// <seealso cref='.FTPClientCollection.AddRange'/>
		public int Add(FTPClient value) 
		{
			return List.Add(value);
		}
示例#2
0
		/// <summary>
		/// <para>Inserts a <see cref='.FTPClient'/> into the <see cref='.FTPClientCollection'/> 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='.FTPClient'/> to insert.</param>
		/// <returns><para>None.</para></returns>
		/// <seealso cref='.FTPClientCollection.Add'/>
		public void Insert(int index, FTPClient value) 
		{
			List.Insert(index, value);
		}
示例#3
0
		/// <summary>
		///     <para>
		///       Initializes a new instance of <see cref='.FTPClientCollection'/> containing any array of <see cref='.FTPClient'/> objects.
		///    </para>
		/// </summary>
		/// <param name='value'>
		///       A array of <see cref='.FTPClient'/> objects with which to intialize the collection
		/// </param>
		public FTPClientCollection(FTPClient[] value) 
		{
			this.AddRange(value);
		}
示例#4
0
		/// <summary>
		/// <para>Copies the <see cref='.FTPClientCollection'/> 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='.FTPClientCollection'/> .</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='.FTPClientCollection'/> 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(FTPClient[] array, int index) 
		{
			CopyTo(array, index);
		}
示例#5
0
		/// <summary>
		///    <para>Returns the index of a <see cref='.FTPClient'/> in 
		///       the <see cref='.FTPClientCollection'/> .</para>
		/// </summary>
		/// <param name='value'>The <see cref='.FTPClient'/> to locate.</param>
		/// <returns>
		/// <para>The index of the <see cref='.FTPClient'/> of <paramref name='value'/> in the 
		/// <see cref='.FTPClientCollection'/>, if found; otherwise, -1.</para>
		/// </returns>
		/// <seealso cref='.FTPClientCollection.Contains'/>
		public int IndexOf(FTPClient value) 
		{
			return List.IndexOf(value);
		}
示例#6
0
		/// <summary>
		/// <para>Copies the elements of an array to the end of the <see cref='.FTPClientCollection'/>.</para>
		/// </summary>
		/// <param name='value'>
		///    An array of type <see cref='.FTPClient'/> containing the objects to add to the collection.
		/// </param>
		/// <returns>
		///   <para>None.</para>
		/// </returns>
		/// <seealso cref='.FTPClientCollection.Add'/>
		public void AddRange(FTPClient[] value) 
		{
			for (int i = 0; (i < value.Length); i = (i + 1)) 
			{
				this.Add(value[i]);
			}
		}
示例#7
0
		/// <summary>
		/// <para>Gets a value indicating whether the 
		///    <see cref='.FTPClientCollection'/> contains the specified <see cref='.FTPClient'/>.</para>
		/// </summary>
		/// <param name='value'>The <see cref='.FTPClient'/> to locate.</param>
		/// <returns>
		/// <para><see langword='true'/> if the <see cref='.FTPClient'/> is contained in the collection; 
		///   otherwise, <see langword='false'/>.</para>
		/// </returns>
		/// <seealso cref='.FTPClientCollection.IndexOf'/>
		public bool Contains(FTPClient value) 
		{
			return List.Contains(value);
		}
示例#8
0
 public void Connected(int ClientID,string IP)
 {
   FTPClient ClientInfo=new FTPClient();
   ClientInfo.ClientID=ClientID;
   ClientInfo.IPAddr=IP;
   Clients.Add(ClientInfo);
 }
示例#9
0
 /// <summary>
 ///    <para>Adds a <see cref='.FTPClient'/> with the specified value to the
 ///    <see cref='.FTPClientCollection'/> .</para>
 /// </summary>
 /// <param name='value'>The <see cref='.FTPClient'/> to add.</param>
 /// <returns>
 ///    <para>The index at which the new element was inserted.</para>
 /// </returns>
 /// <seealso cref='.FTPClientCollection.AddRange'/>
 public int Add(FTPClient value)
 {
     return(List.Add(value));
 }
示例#10
0
 /// <summary>
 /// <para>Inserts a <see cref='.FTPClient'/> into the <see cref='.FTPClientCollection'/> 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='.FTPClient'/> to insert.</param>
 /// <returns><para>None.</para></returns>
 /// <seealso cref='.FTPClientCollection.Add'/>
 public void Insert(int index, FTPClient value)
 {
     List.Insert(index, value);
 }
示例#11
0
 /// <summary>
 ///    <para>Returns the index of a <see cref='.FTPClient'/> in
 ///       the <see cref='.FTPClientCollection'/> .</para>
 /// </summary>
 /// <param name='value'>The <see cref='.FTPClient'/> to locate.</param>
 /// <returns>
 /// <para>The index of the <see cref='.FTPClient'/> of <paramref name='value'/> in the
 /// <see cref='.FTPClientCollection'/>, if found; otherwise, -1.</para>
 /// </returns>
 /// <seealso cref='.FTPClientCollection.Contains'/>
 public int IndexOf(FTPClient value)
 {
     return(List.IndexOf(value));
 }
示例#12
0
 /// <summary>
 /// <para>Gets a value indicating whether the
 ///    <see cref='.FTPClientCollection'/> contains the specified <see cref='.FTPClient'/>.</para>
 /// </summary>
 /// <param name='value'>The <see cref='.FTPClient'/> to locate.</param>
 /// <returns>
 /// <para><see langword='true'/> if the <see cref='.FTPClient'/> is contained in the collection;
 ///   otherwise, <see langword='false'/>.</para>
 /// </returns>
 /// <seealso cref='.FTPClientCollection.IndexOf'/>
 public bool Contains(FTPClient value)
 {
     return(List.Contains(value));
 }