private void setGuiFromConfig(RemoteConnectionConfigurationCollection connections)
        {
            connectionsListView.Items.Clear();

            foreach (RemoteConnectionConfiguration rcc in connections)
            {
                addConnectionRecord(rcc, true);
            }
        }
 public RemoteConnectionConfigurationEnumerator(RemoteConnectionConfigurationCollection mappings)
 {
     temp = ((mappings));
     baseEnumerator = temp.GetEnumerator();
 }
 /// <summary>
 ///     <para>
 ///       Initializes a new instance of <see cref='Tools..RemoteConnectionConfigurationCollection'/> based on another <see cref='Tools..RemoteConnectionConfigurationCollection'/>.
 ///    </para>
 /// </summary>
 /// <param name='value'>
 ///       A <see cref='Tools..RemoteConnectionConfigurationCollection'/> from which the contents are copied
 /// </param>
 public RemoteConnectionConfigurationCollection(RemoteConnectionConfigurationCollection value)
 {
     AddRange(value);
 }
 /// <summary>
 ///     <para>
 ///       Adds the contents of another <see cref='Tools..RemoteConnectionConfigurationCollection'/> to the end of the collection.
 ///    </para>
 /// </summary>
 /// <param name='value'>
 ///    A <see cref='Tools..RemoteConnectionConfigurationCollection'/> containing the objects to add to the collection.
 /// </param>
 /// <returns>
 ///   <para>None.</para>
 /// </returns>
 /// <seealso cref='Tools..RemoteConnectionConfigurationCollection.Add'/>
 public void AddRange(RemoteConnectionConfigurationCollection value)
 {
     for (int i = 0; (i < value.Count); i = (i + 1))
     {
         Add(value[i]);
     }
 }