SendMailJobMergeDataReader Property |
Gets the data reader for the mail merge.
Namespace: MailBee.SmtpMailAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public IDataReader MergeDataReader { get; }
Public ReadOnly Property MergeDataReader As IDataReader
Get
Property Value
Type:
IDataReaderA reference to the source of the data for mail merge, or a null reference
(
Nothing in Visual Basic) if this job is not a "mail merge over data reader" job.
Remarks This property can be used in single-threaded mode only. In multi-threaded mode, you usually cannot
access any data from the reader as it may be accessed by concurrent threads, and they may advance the reader
before you get a chance to read anything from it. Use
MergeDataReaderRowValues property instead.
See Also