Search Results for

    Show / Hide Table of Contents

    Class SmtpTlsDiagnosticResult

    SmtpTlsDiagnosticResult

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

    Constructors

    View Source

    SmtpTlsDiagnosticResult()

    Initializes a new instance of the SmtpTlsDiagnosticResult class.

    Declaration
    [JsonConstructor]
    protected SmtpTlsDiagnosticResult()
    View Source

    SmtpTlsDiagnosticResult(bool, bool, string, string)

    Initializes a new instance of the SmtpTlsDiagnosticResult class.

    Declaration
    public SmtpTlsDiagnosticResult(bool supported = false, bool negotiated = false, string protocol = null, string cipher = null)
    Parameters
    Type Name Description
    bool supported

    supported (required).

    bool negotiated

    negotiated (required).

    string protocol

    protocol.

    string cipher

    cipher.

    Properties

    View Source

    Cipher

    Gets or Sets Cipher

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

    Negotiated

    Gets or Sets Negotiated

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

    Protocol

    Gets or Sets Protocol

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

    Supported

    Gets or Sets Supported

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