Search Results for

    Show / Hide Table of Contents

    Class DnsPropagationResolverResult

    Propagation results from a single DNS resolver

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

    Constructors

    View Source

    DnsPropagationResolverResult()

    Initializes a new instance of the DnsPropagationResolverResult class.

    Declaration
    [JsonConstructor]
    protected DnsPropagationResolverResult()
    View Source

    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 Source

    MatchedExpectedValue

    Gets or Sets MatchedExpectedValue

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

    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>
    View Source

    Resolver

    Gets or Sets Resolver

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

    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 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.