Search Results for

    Show / Hide Table of Contents

    Class EmailSignatureParseResult

    Result of attempting to parse an email signature

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

    Constructors

    View Source

    EmailSignatureParseResult()

    Initializes a new instance of the EmailSignatureParseResult class.

    Declaration
    [JsonConstructor]
    protected EmailSignatureParseResult()
    View Source

    EmailSignatureParseResult(bool, EmailSignature)

    Initializes a new instance of the EmailSignatureParseResult class.

    Declaration
    public EmailSignatureParseResult(bool present = false, EmailSignature signature = null)
    Parameters
    Type Name Description
    bool present

    True when a signature block was detected (required).

    EmailSignature signature

    signature.

    Properties

    View Source

    Present

    True when a signature block was detected

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

    True when a signature block was detected

    View Source

    Signature

    Gets or Sets Signature

    Declaration
    [DataMember(Name = "signature", EmitDefaultValue = true)]
    public EmailSignature Signature { get; set; }
    Property Value
    Type Description
    EmailSignature

    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.