Search Results for

    Show / Hide Table of Contents

    Class CheckEmailBlacklistOptions

    Check a domain, IP address, or specific MX host against configured DNS blacklists

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

    Constructors

    View Source

    CheckEmailBlacklistOptions(string, string, string, string)

    Initializes a new instance of the CheckEmailBlacklistOptions class.

    Declaration
    public CheckEmailBlacklistOptions(string domain = null, string ipAddress = null, string mxHost = null, string captchaToken = null)
    Parameters
    Type Name Description
    string domain

    Domain to expand into A and MX host IPv4 addresses.

    string ipAddress

    Specific IPv4 address to check directly.

    string mxHost

    Specific MX host to resolve and check directly.

    string captchaToken

    captchaToken.

    Properties

    View Source

    CaptchaToken

    Gets or Sets CaptchaToken

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

    Domain

    Domain to expand into A and MX host IPv4 addresses

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

    Domain to expand into A and MX host IPv4 addresses

    View Source

    IpAddress

    Specific IPv4 address to check directly

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

    Specific IPv4 address to check directly

    View Source

    MxHost

    Specific MX host to resolve and check directly

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

    Specific MX host to resolve and check directly

    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.