ImapClient.ImapClient C# (CSharp) Method

ImapClient() public method

public ImapClient ( string hostname, string username, string password, int port, bool ssl ) : System
hostname string
username string
password string
port int
ssl bool
return System
    public ImapClient(string hostname, string username, string password, int port, bool ssl)
    {
        this.hostname = hostname;
        this.username = username;
        this.password = password;
        this.port = port;
        this.ssl = ssl;
    }

Same methods

ImapClient::ImapClient ( string hostname, int port, string username, string password, bool ssl = false ) : System