Class CheckEmailBlacklistOptions
Check a domain, IP address, or specific MX host against configured DNS blacklists
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "CheckEmailBlacklistOptions")]
public class CheckEmailBlacklistOptions : IValidatableObject
Constructors
View SourceCheckEmailBlacklistOptions(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 SourceCaptchaToken
Gets or Sets CaptchaToken
Declaration
[DataMember(Name = "captchaToken", EmitDefaultValue = true)]
public string CaptchaToken { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
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 |
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 |
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 SourceToJson()
Returns the JSON string presentation of the object
Declaration
public virtual string ToJson()
Returns
| Type | Description |
|---|---|
| string | JSON string presentation of the object |
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string | String presentation of the object |