EmailBlacklist
A EmailBlacklist helds the relevant information of a blacklist email
Parent class
Inherits from object
Constructors
- (string emailAddress "Set emailAdress.") - Creat an new EmailBlacklist instance using an email
- (string emailAddress "Set emailAdress.", string comment "Set comment.") - Creat an new EmailBlacklist instance using an email and relevant comment
Methods
- (From object) string ToString() - The string representation of the object.
Properties
- string Comment { get; set; } - Get/Set email comment
- DateTime Date { get; } - Get date
- string Email { get; set; } - Get/Set email address
- string ObjectTypeName { get; } - The name of the type of object.
- (From object) TypeInformation TypeInformation { get; } - Get information about this class.
Examples
array emails = {"[email protected]", "[email protected]"};
Dictionary d = Blacklist_getDetail(emails);//{"[email protected]": EmailBlacklist}
EmailBlacklist e = d["[email protected]"];
print(e.Comment);//comment3
print(e.Date);//2017-08-11 04:13:26