Class IncomingServer
The incoming server information (POP3 or IMAP)
Inheritance
object
IncomingServer
Namespace: Nettify.MailAddress.IspInfo
Assembly: Nettify.dll
Syntax
public class IncomingServer
Properties
| Edit this page View SourceAuthentication
The authentication methods
Declaration
public string[]? Authentication { get; set; }
Property Value
Type | Description |
---|---|
string[] |
Hostname
The hostname for the server
Declaration
public string Hostname { get; set; }
Property Value
Type | Description |
---|---|
string |
Pop3
POP3 server properties
Declaration
public Pop3? Pop3 { get; set; }
Property Value
Type | Description |
---|---|
Pop3 |
Port
The port for the server. Usually 995 or 993, depending on the server.
Declaration
public int Port { get; set; }
Property Value
Type | Description |
---|---|
int |
SocketType
The socket type. Usually SSL or STARTTLS
Declaration
public string SocketType { get; set; }
Property Value
Type | Description |
---|---|
string |
Type
The server type. Usually "imap" or "pop3"
Declaration
public string Type { get; set; }
Property Value
Type | Description |
---|---|
string |
Username
The username indicator. Usually, it's set to %EMAILADDRESS%, which means the E-mail address placeholder.
Declaration
public string Username { get; set; }
Property Value
Type | Description |
---|---|
string |