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

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

Parameters

emails
Type: System.DataIDataReader
The data reader, 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 reader, 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