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

Namespace: MailBee.AddressCheck
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public Task<AddressValidationLevel> VerifyAsync(
	string email
)

Parameters

email
Type: SystemString
The e-mail address to check. Must be somewhat like "user@domain.com".

Return Value

Type: TaskAddressValidationLevel
A task that represents the asynchronous operation. The value of TResult parameter is OK if the validation succeeded, or the particular validation level at which the verification failed.
Exceptions
ExceptionCondition
MailBeeInvalidArgumentExceptionemail is a null reference (Nothing in Visual Basic) or DnsServers collection is empty.
MailBeeUserAbortExceptionThe user code has aborted the component with Abort method.
See Also