VerifyingEventArgsDataReader Property
The data reader from which MailBee takes e-mail addresses to verify.

Namespace: MailBee.AddressCheck
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public IDataReader DataReader { get; }

Property Value

Type: IDataReader
A reference to the data reader if it was passed as an input, or a null reference (Nothing in Visual Basic) if the input was DataTable or a string array.
Remarks
Note that you must not advance the position of data reader (such as with Read method). MailBee will do this itself. Also, if the verification process is multi-threaded, you cannot use this property to access the current row. Another thread may already use the reader to read the next data row. Use DataReaderRowValues and DataReaderColumnNames propeties to read the field values corresponding to the current row.
See Also