EmailValidatorValidateCSVFile Method |
Validates a list of email addresses in a CSV file.
Each email address must be found on a separate line by comma(,) itself.
Namespace: NeevSoftware.ComponentsAssembly: NeevSoftware.EmailValidator (in NeevSoftware.EmailValidator.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax public void ValidateCSVFile(
string FilePath
)
Public Sub ValidateCSVFile (
FilePath As String
)
public:
void ValidateCSVFile(
String^ FilePath
)
member ValidateCSVFile :
FilePath : string -> unit
Parameters
- FilePath
- Type: SystemString
The file system path to the file.
Remarks
To determine if the validation was successful, wire up the EmailValidationCompleteEvent event,
and obtain the results from the ValidateEmailEventArgs object. By default, Email Validator will take
advantage of the high performance MX Cache to prevent unnecessary Dns queries.
See Also