Search Results for

    Show / Hide Table of Contents

    Class CheckDnsPropagationResults

    DNS propagation status across configured resolvers

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

    Constructors

    View Source

    CheckDnsPropagationResults()

    Initializes a new instance of the CheckDnsPropagationResults class.

    Declaration
    [JsonConstructor]
    protected CheckDnsPropagationResults()
    View Source

    CheckDnsPropagationResults(string, RecordTypeEnum, string, bool, int, int, List<DnsPropagationResolverResult>, List<string>, List<string>)

    Initializes a new instance of the CheckDnsPropagationResults class.

    Declaration
    public CheckDnsPropagationResults(string host = null, CheckDnsPropagationResults.RecordTypeEnum recordType = (CheckDnsPropagationResults.RecordTypeEnum)0, string expectedValue = null, bool propagatedToAllResolvers = false, int respondingResolverCount = 0, int matchingResolverCount = 0, List<DnsPropagationResolverResult> resolverResults = null, List<string> warnings = null, List<string> errors = null)
    Parameters
    Type Name Description
    string host

    host (required).

    CheckDnsPropagationResults.RecordTypeEnum recordType

    Domain Name Server Record Types (required).

    string expectedValue

    expectedValue.

    bool propagatedToAllResolvers

    propagatedToAllResolvers (required).

    int respondingResolverCount

    respondingResolverCount (required).

    int matchingResolverCount

    matchingResolverCount (required).

    List<DnsPropagationResolverResult> resolverResults

    resolverResults (required).

    List<string> warnings

    warnings (required).

    List<string> errors

    errors (required).

    Properties

    View Source

    Errors

    Gets or Sets Errors

    Declaration
    [DataMember(Name = "errors", IsRequired = true, EmitDefaultValue = true)]
    public List<string> Errors { get; set; }
    Property Value
    Type Description
    List<string>
    View Source

    ExpectedValue

    Gets or Sets ExpectedValue

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

    Host

    Gets or Sets Host

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

    MatchingResolverCount

    Gets or Sets MatchingResolverCount

    Declaration
    [DataMember(Name = "matchingResolverCount", IsRequired = true, EmitDefaultValue = true)]
    public int MatchingResolverCount { get; set; }
    Property Value
    Type Description
    int
    View Source

    PropagatedToAllResolvers

    Gets or Sets PropagatedToAllResolvers

    Declaration
    [DataMember(Name = "propagatedToAllResolvers", IsRequired = true, EmitDefaultValue = true)]
    public bool PropagatedToAllResolvers { get; set; }
    Property Value
    Type Description
    bool
    View Source

    RecordType

    Domain Name Server Record Types

    Declaration
    [DataMember(Name = "recordType", IsRequired = true, EmitDefaultValue = true)]
    public CheckDnsPropagationResults.RecordTypeEnum RecordType { get; set; }
    Property Value
    Type Description
    CheckDnsPropagationResults.RecordTypeEnum

    Domain Name Server Record Types

    View Source

    ResolverResults

    Gets or Sets ResolverResults

    Declaration
    [DataMember(Name = "resolverResults", IsRequired = true, EmitDefaultValue = true)]
    public List<DnsPropagationResolverResult> ResolverResults { get; set; }
    Property Value
    Type Description
    List<DnsPropagationResolverResult>
    View Source

    RespondingResolverCount

    Gets or Sets RespondingResolverCount

    Declaration
    [DataMember(Name = "respondingResolverCount", IsRequired = true, EmitDefaultValue = true)]
    public int RespondingResolverCount { get; set; }
    Property Value
    Type Description
    int
    View Source

    Warnings

    Gets or Sets Warnings

    Declaration
    [DataMember(Name = "warnings", IsRequired = true, EmitDefaultValue = true)]
    public List<string> Warnings { get; set; }
    Property Value
    Type Description
    List<string>

    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.