Click here to Skip to main content
15,886,026 members
Articles / Programming Languages / C#

SMTP Stress Tool

Rate me:
Please Sign up or sign in to vote.
3.82/5 (6 votes)
27 Dec 2006CPOL 34.6K   1K   24  
SMTP Stress Tool
using System;
using System.IO;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using System.Windows.Forms;
using System.Reflection;

namespace SmtpStress.Resources
{
    /// <summary>
    /// Resource manager.
    /// </summary>
    public class ResManager
    {
        /*
        public string[] GetResourceIDs()
        {
            return null;
        }
        */

        #region method GetIcon

        /// <summary>
        /// Gets specified icon.
        /// </summary>
        /// <param name="iconName">Icon name.</param>
        /// <returns></returns>
        public static Icon GetIcon(string iconName)
        {
            Stream rs = Assembly.GetExecutingAssembly().GetManifestResourceStream("SmtpStress.Resources." + iconName);
            return new Icon(rs);
        }

        #endregion

        #region method GetImage

        /// <summary>
        /// Gets specified image.
        /// </summary>
        /// <param name="imageName">Image name.</param>
        /// <returns></returns>
        public static Image GetImage(string imageName)
        {
            Stream rs = Assembly.GetExecutingAssembly().GetManifestResourceStream("SmtpStress.Resources." + imageName);
            return Image.FromStream(rs);
        }

        #endregion
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Estonia Estonia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions