Class EMailConnectionInfo
All information needed to connect to a mailserver
Carrier object for EMailConnectionInfo. Services for the EMailConnectionInfo Carrier is available from the EMail Agent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.1.0.0")]
public class EMailConnectionInfo : Carrier
Constructors
EMailConnectionInfo()
Default constructor
Declaration
public EMailConnectionInfo()
See Also
Properties
Folder
Optional folder to set as current after logging in
Declaration
[DataMember]
public virtual string Folder { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
Password
Password for the username
Declaration
[DataMember]
public virtual string Password { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
ServerName
Hostname or ip to server to connect to. Custom ports may be specified by adding ':' and the port number after the name/ip. Ex: '127.0.0.1:6543'
Declaration
[DataMember]
public virtual string ServerName { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
UseSSL
Use a secure connection with the server
Declaration
[DataMember]
public virtual bool UseSSL { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
UserName
Name of user to log in with
Declaration
[DataMember]
public virtual string UserName { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | The carrier contents. |
See Also
ToString(string)
Returns the carrier contents as a formatted string, useful for debugging. Each line in the output is prefixed with the input value.
Declaration
public string ToString(string prefix)
Parameters
Type | Name | Description |
---|---|---|
string | prefix | The line prefix (typically used for indenting) |
Returns
Type | Description |
---|---|
string | The carrier contents. |