Class DnsPropagationResolverResult
Propagation results from a single DNS resolver
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "DnsPropagationResolverResult")]
public class DnsPropagationResolverResult : IValidatableObject
Constructors
View SourceDnsPropagationResolverResult()
Initializes a new instance of the DnsPropagationResolverResult class.
Declaration
[JsonConstructor]
protected DnsPropagationResolverResult()
DnsPropagationResolverResult(string, List<string>, bool, bool?)
Initializes a new instance of the DnsPropagationResolverResult class.
Declaration
public DnsPropagationResolverResult(string resolver = null, List<string> records = null, bool responded = false, bool? matchedExpectedValue = null)
Parameters
| Type | Name | Description |
|---|---|---|
| string | resolver | resolver (required). |
| List<string> | records | records (required). |
| bool | responded | responded (required). |
| bool? | matchedExpectedValue | matchedExpectedValue. |
Properties
View SourceMatchedExpectedValue
Gets or Sets MatchedExpectedValue
Declaration
[DataMember(Name = "matchedExpectedValue", EmitDefaultValue = true)]
public bool? MatchedExpectedValue { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |
Records
Gets or Sets Records
Declaration
[DataMember(Name = "records", IsRequired = true, EmitDefaultValue = true)]
public List<string> Records { get; set; }
Property Value
| Type | Description |
|---|---|
| List<string> |
Resolver
Gets or Sets Resolver
Declaration
[DataMember(Name = "resolver", IsRequired = true, EmitDefaultValue = true)]
public string Resolver { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Responded
Gets or Sets Responded
Declaration
[DataMember(Name = "responded", IsRequired = true, EmitDefaultValue = true)]
public bool Responded { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
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 |