Show / Hide Table of Contents

Class DNS

The DNS resolution results.

Inheritance
object
DNS
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.HealthchecksService.Models
Assembly: OCI.DotNetSDK.Healthchecks.dll
Syntax
public class DNS

Properties

Addresses

Declaration
[JsonProperty(PropertyName = "addresses")]
public List<string> Addresses { get; set; }
Property Value
Type Description
List<string>

The addresses returned by DNS resolution.

DomainLookupDuration

Declaration
[JsonProperty(PropertyName = "domainLookupDuration")]
public double DomainLookupDuration { get; set; }
Property Value
Type Description
double

Total DNS resolution duration, in milliseconds. Calculated using domainLookupEnd minus domainLookupStart.

In this article
Back to top