Search Results for

    Show / Hide Table of Contents

    Class CreateConnectorImapConnectionOptions

    Options for IMAP connection to external email inbox. Allows syncing emails via IMAP.

    Inheritance
    object
    CreateConnectorImapConnectionOptions
    Implements
    IValidatableObject
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    Namespace: mailslurp.Model
    Assembly: mailslurp.dll
    Syntax
    [DataContract(Name = "CreateConnectorImapConnectionOptions")]
    public class CreateConnectorImapConnectionOptions : IValidatableObject

    Constructors

    View Source

    CreateConnectorImapConnectionOptions()

    Initializes a new instance of the CreateConnectorImapConnectionOptions class.

    Declaration
    [JsonConstructor]
    protected CreateConnectorImapConnectionOptions()
    View Source

    CreateConnectorImapConnectionOptions(bool?, string, string, string, string, int?, string, bool?, bool?, bool?, int?, string, string, List<string>, string, List<string>)

    Initializes a new instance of the CreateConnectorImapConnectionOptions class.

    Declaration
    public CreateConnectorImapConnectionOptions(bool? imapSsl = null, string imapUsername = null, string imapPassword = null, string selectFolder = null, string searchTerms = null, int? imapPort = null, string imapHost = null, bool? enabled = null, bool? startTls = null, bool? proxyEnabled = null, int? proxyPort = null, string proxyHost = null, string localHostName = null, List<string> mechanisms = null, string sslTrust = null, List<string> sslProtocols = null)
    Parameters
    Type Name Description
    bool? imapSsl

    imapSsl.

    string imapUsername

    imapUsername.

    string imapPassword

    imapPassword.

    string selectFolder

    Optional folder to select during IMAP connection.

    string searchTerms

    searchTerms.

    int? imapPort

    IMAP server port.

    string imapHost

    IMAP server host (required).

    bool? enabled

    IMAP server enabled.

    bool? startTls

    startTls.

    bool? proxyEnabled

    proxyEnabled.

    int? proxyPort

    proxyPort.

    string proxyHost

    proxyHost.

    string localHostName

    localHostName.

    List<string> mechanisms

    List of IMAP mechanisms.

    string sslTrust

    sslTrust.

    List<string> sslProtocols

    List of SSL protocols.

    Properties

    View Source

    Enabled

    IMAP server enabled

    Declaration
    [DataMember(Name = "enabled", EmitDefaultValue = true)]
    public bool? Enabled { get; set; }
    Property Value
    Type Description
    bool?

    IMAP server enabled

    View Source

    ImapHost

    IMAP server host

    Declaration
    [DataMember(Name = "imapHost", IsRequired = true, EmitDefaultValue = true)]
    public string ImapHost { get; set; }
    Property Value
    Type Description
    string

    IMAP server host

    View Source

    ImapPassword

    Gets or Sets ImapPassword

    Declaration
    [DataMember(Name = "imapPassword", EmitDefaultValue = true)]
    public string ImapPassword { get; set; }
    Property Value
    Type Description
    string
    View Source

    ImapPort

    IMAP server port

    Declaration
    [DataMember(Name = "imapPort", EmitDefaultValue = true)]
    public int? ImapPort { get; set; }
    Property Value
    Type Description
    int?

    IMAP server port

    View Source

    ImapSsl

    Gets or Sets ImapSsl

    Declaration
    [DataMember(Name = "imapSsl", EmitDefaultValue = true)]
    public bool? ImapSsl { get; set; }
    Property Value
    Type Description
    bool?
    View Source

    ImapUsername

    Gets or Sets ImapUsername

    Declaration
    [DataMember(Name = "imapUsername", EmitDefaultValue = true)]
    public string ImapUsername { get; set; }
    Property Value
    Type Description
    string
    View Source

    LocalHostName

    Gets or Sets LocalHostName

    Declaration
    [DataMember(Name = "localHostName", EmitDefaultValue = true)]
    public string LocalHostName { get; set; }
    Property Value
    Type Description
    string
    View Source

    Mechanisms

    List of IMAP mechanisms

    Declaration
    [DataMember(Name = "mechanisms", EmitDefaultValue = true)]
    public List<string> Mechanisms { get; set; }
    Property Value
    Type Description
    List<string>

    List of IMAP mechanisms

    View Source

    ProxyEnabled

    Gets or Sets ProxyEnabled

    Declaration
    [DataMember(Name = "proxyEnabled", EmitDefaultValue = true)]
    public bool? ProxyEnabled { get; set; }
    Property Value
    Type Description
    bool?
    View Source

    ProxyHost

    Gets or Sets ProxyHost

    Declaration
    [DataMember(Name = "proxyHost", EmitDefaultValue = true)]
    public string ProxyHost { get; set; }
    Property Value
    Type Description
    string
    View Source

    ProxyPort

    Gets or Sets ProxyPort

    Declaration
    [DataMember(Name = "proxyPort", EmitDefaultValue = true)]
    public int? ProxyPort { get; set; }
    Property Value
    Type Description
    int?
    View Source

    SearchTerms

    Gets or Sets SearchTerms

    Declaration
    [DataMember(Name = "searchTerms", EmitDefaultValue = true)]
    public string SearchTerms { get; set; }
    Property Value
    Type Description
    string
    View Source

    SelectFolder

    Optional folder to select during IMAP connection

    Declaration
    [DataMember(Name = "selectFolder", EmitDefaultValue = true)]
    public string SelectFolder { get; set; }
    Property Value
    Type Description
    string

    Optional folder to select during IMAP connection

    View Source

    SslProtocols

    List of SSL protocols

    Declaration
    [DataMember(Name = "sslProtocols", EmitDefaultValue = true)]
    public List<string> SslProtocols { get; set; }
    Property Value
    Type Description
    List<string>

    List of SSL protocols

    View Source

    SslTrust

    Gets or Sets SslTrust

    Declaration
    [DataMember(Name = "sslTrust", EmitDefaultValue = true)]
    public string SslTrust { get; set; }
    Property Value
    Type Description
    string
    View Source

    StartTls

    Gets or Sets StartTls

    Declaration
    [DataMember(Name = "startTls", EmitDefaultValue = true)]
    public bool? StartTls { get; set; }
    Property Value
    Type Description
    bool?

    Methods

    View Source

    ToJson()

    Returns the JSON string presentation of the object

    Declaration
    public virtual string ToJson()
    Returns
    Type Description
    string

    JSON string presentation of the object

    View Source

    ToString()

    Returns the string presentation of the object

    Declaration
    public override string ToString()
    Returns
    Type Description
    string

    String presentation of the object

    Overrides
    object.ToString()

    Implements

    IValidatableObject
    • View Source
    In this article
    Back to top See MailSlurp website for more information.