SmtpServer.OptionsBuilder.AllowUnsecureAuthentication C# (CSharp) Метод

AllowUnsecureAuthentication() публичный Метод

Sets a value indicating whether authentication should be allowed on an unsecure session.
public AllowUnsecureAuthentication ( bool value = true ) : OptionsBuilder
value bool true if the AUTH command is available on an unsecure session, false if not.
Результат OptionsBuilder
        public OptionsBuilder AllowUnsecureAuthentication(bool value = true)
        {
            _options.AllowUnsecureAuthentication = value;

            return this;
        }