EmailAddressValidatorVerifyAsync Method (DataTable, String)
async/await version of Verify(DataTable, String).

Namespace: MailBee.AddressCheck
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public Task VerifyAsync(
	DataTable emails,
	string columnName
)

Parameters

emails
Type: System.DataDataTable
The data table, in columnName column containing the e-mail addresses to check for syntax and, optionally, for existence.
columnName
Type: SystemString
The name of column in the given data table, containing the e-mail addresses.

Return Value

Type: Task
A task that represents the asynchronous operation.
Exceptions
ExceptionCondition
MailBeeInvalidArgumentExceptionemails or columnName is a null reference (Nothing in Visual Basic), columnName is an empty string, or DnsServers collection is empty.
MailBeeUserAbortExceptionThe user code has aborted the component with Abort method.
See Also