netDumbster.smtp.Configuration.Build C# (CSharp) 메소드

Build() 공개 메소드

Builds this instance.
public Build ( ) : SimpleSmtpServer
리턴 SimpleSmtpServer
        public SimpleSmtpServer Build()
        {
            Configuration config = this;
            if (this.Port == 0)
            {
                config = this.WithRandomPort();
            }
            return SimpleSmtpServer.Start(config);
        }