Search Results for

    Show / Hide Table of Contents

    Class VerifyEmailAddressOptions

    Options for verifying that an email address exists at a remote mail server.

    Inheritance
    object
    VerifyEmailAddressOptions
    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 = "VerifyEmailAddressOptions")]
    public class VerifyEmailAddressOptions : IValidatableObject

    Constructors

    View Source

    VerifyEmailAddressOptions()

    Initializes a new instance of the VerifyEmailAddressOptions class.

    Declaration
    [JsonConstructor]
    protected VerifyEmailAddressOptions()
    View Source

    VerifyEmailAddressOptions(string, string, string, int?)

    Initializes a new instance of the VerifyEmailAddressOptions class.

    Declaration
    public VerifyEmailAddressOptions(string mailServerDomain = null, string emailAddress = null, string senderEmailAddress = null, int? port = null)
    Parameters
    Type Name Description
    string mailServerDomain

    mailServerDomain.

    string emailAddress

    emailAddress (required).

    string senderEmailAddress

    senderEmailAddress.

    int? port

    port.

    Properties

    View Source

    EmailAddress

    Gets or Sets EmailAddress

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

    MailServerDomain

    Gets or Sets MailServerDomain

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

    Port

    Gets or Sets Port

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

    SenderEmailAddress

    Gets or Sets SenderEmailAddress

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

    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.