private void disconnectConnector(RemoteConnectionInstance rci)
 {
     if (!rci.IsConnected)
     {
         MessageBox.Show("This connection instance is not connected!");
         return;
     }
     rci.Disconnect();
 }
        //        private void newRecordButton_Click(object sender, System.EventArgs e)
        //        {
        //            initiateNewRecord();
        //        }
        private ListViewItem getListViewItemForRemoteConnectionInstance(RemoteConnectionInstance rci)
        {
            var lvi =
                new ListViewItem
                    (
                    new[]
                        {
                            rci.IsConnected.ToString(),
                            rci.Configuration.Enabled.ToString(),
                            rci.Configuration.Name,
                            rci.Configuration.Uri,
                            rci.Configuration.ProtocolType.ToString(),
                            rci.Configuration.ServiceHost,
                            rci.Configuration.Port
                        },
                    0
                    );

            lvi.Tag = rci;

            return lvi;
        }
 /// <summary>
 ///     <para>
 ///       Initializes a new instance of <see cref='Tools..RemoteConnectionInstanceCollection'/> containing any array of <see cref='Tools..RemoteConnectionInstance'/> objects.
 ///    </para>
 /// </summary>
 /// <param name='value'>
 ///       A array of <see cref='Tools..RemoteConnectionInstance'/> objects with which to intialize the collection
 /// </param>
 public RemoteConnectionInstanceCollection(RemoteConnectionInstance[] value)
 {
     AddRange(value);
 }
        private void connectConnector(RemoteConnectionInstance rci)
        {
            if (rci.IsConnected)
            {
                MessageBox.Show("This connection instance has already connected!");
                return;
            }

            rci.Connect();
        }
 /// <summary>
 /// <para>Inserts a <see cref='Tools..RemoteConnectionInstance'/> into the <see cref='Tools..RemoteConnectionInstanceCollection'/> 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='Tools..RemoteConnectionInstance'/> to insert.</param>
 /// <returns><para>None.</para></returns>
 /// <seealso cref='Tools..RemoteConnectionInstanceCollection.Add'/>
 public void Insert(int index, RemoteConnectionInstance value)
 {
     List.Insert(index, value);
 }
 /// <summary>
 ///    <para> Removes a specific <see cref='Tools..RemoteConnectionInstance'/> from the 
 ///    <see cref='Tools..RemoteConnectionInstanceCollection'/> .</para>
 /// </summary>
 /// <param name='value'>The <see cref='Tools..RemoteConnectionInstance'/> to remove from the <see cref='Tools..RemoteConnectionInstanceCollection'/> .</param>
 /// <returns><para>None.</para></returns>
 /// <exception cref='System.ArgumentException'><paramref name='value'/> is not found in the Collection. </exception>
 public void Remove(RemoteConnectionInstance value)
 {
     List.Remove(value);
 }
 /// <summary>
 ///    <para>Returns the index of a <see cref='Tools..RemoteConnectionInstance'/> in 
 ///       the <see cref='Tools..RemoteConnectionInstanceCollection'/> .</para>
 /// </summary>
 /// <param name='value'>The <see cref='Tools..RemoteConnectionInstance'/> to locate.</param>
 /// <returns>
 /// <para>The index of the <see cref='Tools..RemoteConnectionInstance'/> of <paramref name='value'/> in the 
 /// <see cref='Tools..RemoteConnectionInstanceCollection'/>, if found; otherwise, -1.</para>
 /// </returns>
 /// <seealso cref='Tools..RemoteConnectionInstanceCollection.Contains'/>
 public int IndexOf(RemoteConnectionInstance value)
 {
     return List.IndexOf(value);
 }
 /// <summary>
 /// <para>Copies the <see cref='Tools..RemoteConnectionInstanceCollection'/> 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='Tools..RemoteConnectionInstanceCollection'/> .</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='Tools..RemoteConnectionInstanceCollection'/> 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(RemoteConnectionInstance[] array, int index)
 {
     List.CopyTo(array, index);
 }
 /// <summary>
 /// <para>Gets a value indicating whether the 
 ///    <see cref='Tools..RemoteConnectionInstanceCollection'/> contains the specified <see cref='Tools..RemoteConnectionInstance'/>.</para>
 /// </summary>
 /// <param name='value'>The <see cref='Tools..RemoteConnectionInstance'/> to locate.</param>
 /// <returns>
 /// <para><see langword='true'/> if the <see cref='Tools..RemoteConnectionInstance'/> is contained in the collection; 
 ///   otherwise, <see langword='false'/>.</para>
 /// </returns>
 /// <seealso cref='Tools..RemoteConnectionInstanceCollection.IndexOf'/>
 public bool Contains(RemoteConnectionInstance value)
 {
     return List.Contains(value);
 }
 /// <summary>
 /// <para>Copies the elements of an array to the end of the <see cref='Tools..RemoteConnectionInstanceCollection'/>.</para>
 /// </summary>
 /// <param name='value'>
 ///    An array of type <see cref='Tools..RemoteConnectionInstance'/> containing the objects to add to the collection.
 /// </param>
 /// <returns>
 ///   <para>None.</para>
 /// </returns>
 /// <seealso cref='Tools..RemoteConnectionInstanceCollection.Add'/>
 public void AddRange(RemoteConnectionInstance[] value)
 {
     for (int i = 0; (i < value.Length); i = (i + 1))
     {
         RemoteConnectionInstance nv = GetEntry(value[i].Configuration.Name);
         if (nv != null)
         {
             nv = value[i];
         }
         else
         {
             Add(value[i]);
         }
     }
 }
 /// <summary>
 ///    <para>Adds a <see cref='Tools..RemoteConnectionInstance'/> with the specified value to the 
 ///    <see cref='Tools..RemoteConnectionInstanceCollection'/> .</para>
 /// </summary>
 /// <param name='value'>The <see cref='Tools..RemoteConnectionInstance'/> to add.</param>
 /// <returns>
 ///    <para>The index at which the new element was inserted.</para>
 /// </returns>
 /// <seealso cref='Tools..RemoteConnectionInstanceCollection.AddRange'/>
 public int Add(RemoteConnectionInstance value)
 {
     return List.Add(value);
 }