VerifyingEventArgsDataReader Property |
The data reader from which MailBee takes e-mail addresses to verify.
Namespace: MailBee.AddressCheckAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public IDataReader DataReader { get; }
Public ReadOnly Property DataReader As IDataReader
Get
Property Value
Type:
IDataReaderA 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