Pop3Client.Pop3Client

Pop3Client()

Initializes a new instance of the Pop3Client class

public Pop3Client()

See Also


Pop3Client(string)

Initializes a new instance of the Pop3Client class

public Pop3Client(string host)
ParameterTypeDescription
hostStringThe host name

See Also


Pop3Client(string, SecurityOptions)

Initializes a new instance of the Pop3Client class

public Pop3Client(string host, SecurityOptions securityOptions)
ParameterTypeDescription
hostStringThe host name
securityOptionsSecurityOptionsSecurity mode for a mail client

See Also


Pop3Client(string, int)

Initializes a new instance of the Pop3Client class

public Pop3Client(string host, int port)
ParameterTypeDescription
hostStringThe host name
portInt32The port number

See Also


Pop3Client(string, int, SecurityOptions)

Initializes a new instance of the Pop3Client class

public Pop3Client(string host, int port, SecurityOptions securityOptions)
ParameterTypeDescription
hostStringThe host name
portInt32The port number
securityOptionsSecurityOptionsSecurity mode for a mail client

See Also


Pop3Client(string, string, string)

Initializes a new instance of the Pop3Client class

public Pop3Client(string host, string username, string password)
ParameterTypeDescription
hostStringThe host name
usernameStringThe username
passwordStringThe password

See Also


Pop3Client(string, string, string, SecurityOptions)

Initializes a new instance of the Pop3Client class

public Pop3Client(string host, string username, string password, SecurityOptions securityOptions)
ParameterTypeDescription
hostStringThe host name
usernameStringThe username
passwordStringThe password
securityOptionsSecurityOptionsSecurity mode for a mail client

See Also


Pop3Client(string, int, string, string)

Initializes a new instance of the Pop3Client class

public Pop3Client(string host, int port, string username, string password)
ParameterTypeDescription
hostStringThe host name
portInt32The port number
usernameStringThe username
passwordStringThe password

See Also


Pop3Client(string, int, string, string, SecurityOptions)

Initializes a new instance of the Pop3Client class

public Pop3Client(string host, int port, string username, string password, 
    SecurityOptions securityOptions)
ParameterTypeDescription
hostStringThe host name
portInt32The port number
usernameStringThe username
passwordStringThe password
securityOptionsSecurityOptionsSecurity mode for a mail client

See Also


Pop3Client(string, int, string, string, bool, SecurityOptions)

Initializes a new instance of the Pop3Client class

public Pop3Client(string host, int port, string username, string authInfo, bool useOAuth, 
    SecurityOptions securityOptions)
ParameterTypeDescription
hostStringThe host name
portInt32The port number
usernameStringThe user name
authInfoStringThe user password or XOAUTH2 access token
useOAuthBooleanDefines whether SASL XOAUTH2 mechanism is used to login to the server
securityOptionsSecurityOptionsSecurity mode for a mail client

See Also


Pop3Client(string, int, string, ITokenProvider, SecurityOptions)

Initializes a new instance of the Pop3Client class

public Pop3Client(string host, int port, string username, ITokenProvider tokenProvider, 
    SecurityOptions securityOptions)
ParameterTypeDescription
hostStringThe host name
portInt32The port number
usernameStringThe user name
tokenProviderITokenProviderTokenProvider allowing to retrieve access token.
securityOptionsSecurityOptionsSecurity mode for a mail client

See Also


Pop3Client(string, int, string, string, RemoteCertificateValidationCallback)

Initializes a new instance of the Pop3Client class

public Pop3Client(string host, int port, string username, string password, 
    RemoteCertificateValidationCallback userCertificateValidationCallback)
ParameterTypeDescription
hostStringThe host name
portInt32The port number
usernameStringThe username
passwordStringThe password
userCertificateValidationCallbackRemoteCertificateValidationCallbackSystem.Net.Security.RemoteCertificateValidationCallback

See Also


Pop3Client(string, int, string, string, RemoteCertificateValidationCallback, SecurityOptions)

Initializes a new instance of the Pop3Client class

public Pop3Client(string host, int port, string username, string password, 
    RemoteCertificateValidationCallback userCertificateValidationCallback, 
    SecurityOptions securityOptions)
ParameterTypeDescription
hostStringThe host name
portInt32The port number
usernameStringThe username
passwordStringThe password
userCertificateValidationCallbackRemoteCertificateValidationCallbackSystem.Net.Security.RemoteCertificateValidationCallback
securityOptionsSecurityOptionsSecurity mode for a mail client

See Also