NET Email Validation
EmailsProcessed Property (EmailValidation)
Example 






KellermanSoftware.NetEmailValidation Namespace > EmailValidation Class : EmailsProcessed Property
The number of emails that have been validated asynchronously
Syntax
'Declaration
 
Public ReadOnly Property EmailsProcessed As System.Integer
'Usage
 
Dim instance As EmailValidation
Dim value As System.Integer
 
value = instance.EmailsProcessed
public System.int EmailsProcessed {get;}
public read-only property EmailsProcessed: System.Integer; 
public function get EmailsProcessed : System.int
public: __property System.int get_EmailsProcessed();
public:
property System.int EmailsProcessed {
   System.int get();
}
Example
EmailValidation emailValidator = new EmailValidation(); //Trial Mode
//EmailValidation emailValidator = new EmailValidation("place user name here", "place license key here"); //License Mode
     
emailValidator.FromEmail = "someone@somewhere.com";
emailValidator.FromMailServer = "mail.somewhere.com";
 
//Validate a single email with the best available options
Result myResult = emailValidator.ValidEmail("john.smith@hotmail.com", emailValidator.DefaultOptions);
 
//Print the results to the console
Console.WriteLine(emailValidator.EmailsProcessed);
Dim emailValidator As EmailValidation = New EmailValidation() 'Trial Mode
'Dim emailValidator As EmailValidation = New EmailValidation("place user name here", "place license key here") 'License Mode
 
emailValidator.FromEmail = "someone@somewhere.com"
emailValidator.FromMailServer = "mail.somewhere.com"
 
'Validate a single email with the best available options
Dim myResult As Result = emailValidator.ValidEmail("john.smith@hotmail.com", emailValidator.DefaultOptions)
 
'Print the results to the console
Console.WriteLine(emailValidator.EmailsProcessed)
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

EmailValidation Class
EmailValidation Members