Search Results for

    Show / Hide Table of Contents

    Class ValidateEmailAddressListOptions

    Options for validating a list of email addresses

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

    Constructors

    View Source

    ValidateEmailAddressListOptions()

    Initializes a new instance of the ValidateEmailAddressListOptions class.

    Declaration
    [JsonConstructor]
    protected ValidateEmailAddressListOptions()
    View Source

    ValidateEmailAddressListOptions(List<string>, bool?)

    Initializes a new instance of the ValidateEmailAddressListOptions class.

    Declaration
    public ValidateEmailAddressListOptions(List<string> emailAddressList = null, bool? ignoreOldResults = null)
    Parameters
    Type Name Description
    List<string> emailAddressList

    emailAddressList (required).

    bool? ignoreOldResults

    ignoreOldResults.

    Properties

    View Source

    EmailAddressList

    Gets or Sets EmailAddressList

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

    IgnoreOldResults

    Gets or Sets IgnoreOldResults

    Declaration
    [DataMember(Name = "ignoreOldResults", EmitDefaultValue = true)]
    public bool? IgnoreOldResults { 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
    • Constructors
      • ValidateEmailAddressListOptions()
      • ValidateEmailAddressListOptions(List<string>, bool?)
    • Properties
      • EmailAddressList
      • IgnoreOldResults
    • Methods
      • ToJson()
      • ToString()
    • Implements
    Back to top See MailSlurp website for more information.