Example #1
0
        /// <summary>
        /// Default constructor.
        /// </summary>
        public ProxySmtpHostCollection()
        {
            // Get the current host element.
            ProxySmtpHostElement host =
                (ProxySmtpHostElement)CreateNewElement();

            // Add the element to the collection.
            Add(host);
        }
Example #2
0
 /// <summary>
 /// Add a new host element type to the collection.
 /// </summary>
 /// <param name="element">The current host element.</param>
 public void Add(ProxySmtpHostElement element)
 {
     // Add the element to the base
     // ConfigurationElementCollection type.
     BaseAdd(element);
 }