SmtpServer.OptionsBuilder.UserAuthenticator C# (CSharp) Method

UserAuthenticator() public method

Sets the User Authenticator.
public UserAuthenticator ( IUserAuthenticator userAuthenticator ) : OptionsBuilder
userAuthenticator IUserAuthenticator The user authenticator.
return OptionsBuilder
        public OptionsBuilder UserAuthenticator(IUserAuthenticator userAuthenticator)
        {
            _options.UserAuthenticator = userAuthenticator;

            return this;
        }