Difference between revisions of "EmailBlacklist class"

From Catglobe Wiki
Jump to: navigation, search
(Created page with "{{CGscriptClass_Template |Name=<nowiki>EmailBlacklist</nowiki> |Description=<nowiki>A EmailBlacklist helds the relevant information of a blacklist email</nowiki> |Constructors...")
 
Line 18: Line 18:
 
{{CGscriptProperties_Template|ReturnType=TypeInformation|Name=<nowiki>TypeInformation</nowiki>|HasGetter=1|Description=<nowiki>Get information about this class.</nowiki>}}
 
{{CGscriptProperties_Template|ReturnType=TypeInformation|Name=<nowiki>TypeInformation</nowiki>|HasGetter=1|Description=<nowiki>Get information about this class.</nowiki>}}
 
}}
 
}}
 +
 +
=== <span style="color:#DF8621">'''Examples'''</span> ===
 +
<source lang="javascript">
 +
 +
</source>

Revision as of 06:41, 11 August 2017

EmailBlacklist



A EmailBlacklist helds the relevant information of a blacklist email

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

  • 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.
  • TypeInformation TypeInformation { get; } - Get information about this class.


Examples