Search Results for

    Show / Hide Table of Contents

    Class SmtpAuthDiagnosticResult

    SmtpAuthDiagnosticResult

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

    Constructors

    View Source

    SmtpAuthDiagnosticResult()

    Initializes a new instance of the SmtpAuthDiagnosticResult class.

    Declaration
    [JsonConstructor]
    protected SmtpAuthDiagnosticResult()
    View Source

    SmtpAuthDiagnosticResult(bool, bool, string)

    Initializes a new instance of the SmtpAuthDiagnosticResult class.

    Declaration
    public SmtpAuthDiagnosticResult(bool attempted = false, bool success = false, string mechanism = null)
    Parameters
    Type Name Description
    bool attempted

    attempted (required).

    bool success

    success (required).

    string mechanism

    mechanism.

    Properties

    View Source

    Attempted

    Gets or Sets Attempted

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

    Mechanism

    Gets or Sets Mechanism

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

    Success

    Gets or Sets Success

    Declaration
    [DataMember(Name = "success", IsRequired = true, EmitDefaultValue = true)]
    public bool Success { 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.