Class DNSLookupResults
Results of query on domain name servers
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "DNSLookupResults")]
public class DNSLookupResults : IValidatableObject
Constructors
View SourceDNSLookupResults()
Initializes a new instance of the DNSLookupResults class.
Declaration
[JsonConstructor]
protected DNSLookupResults()
DNSLookupResults(List<DNSLookupResult>)
Initializes a new instance of the DNSLookupResults class.
Declaration
public DNSLookupResults(List<DNSLookupResult> results = null)
Parameters
Type | Name | Description |
---|---|---|
List<DNSLookupResult> | results | results (required). |
Properties
View SourceResults
Gets or Sets Results
Declaration
[DataMember(Name = "results", IsRequired = true, EmitDefaultValue = true)]
public List<DNSLookupResult> Results { get; set; }
Property Value
Type | Description |
---|---|
List<DNSLookupResult> |
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 |