The IFaxIncomingMessageIterator interface is used by a fax client application to move through the archive of inbound fax messages that the fax service has successfully received. Because the IFaxIncomingMessageIterator interface is a forward iterator, you can only move forward through the archive from beginning to end, and you can access only one fax message (IFaxIncomingMessage object) at a time.
The IFaxIncomingMessageIterator interface is accessed through the IFaxIncomingArchive interface.
IFaxIncomingMessageIterator Members
| AtEOF | The AtEOF property is the end of file marker for the archive of inbound fax messages. If this property is equal to TRUE, the archive cursor has moved beyond the last fax message in the inbound fax archive. If this property is equal to FALSE, the archive cursor has not yet reached the end of the archive. |
| Message | The Message property retrieves the inbound fax message under the archive cursor. |
| MoveFirst | The MoveFirst method moves the archive cursor to the first fax message in the archive of inbound faxes. |
| MoveNext | The MoveNext method moves the archive cursor to the next message in the archive of inbound faxes. |
| PrefetchSize | The PrefetchSize property indicates the size of the prefetch (read-ahead) buffer. |
Remarks
To create a FaxIncomingMessageIterator object in C++, call the IFaxIncomingArchive::GetMessages method.
Interface Information
| Stock Implementation | Fxscomex.dll |
|---|
| Custom Implementation | No |
|---|
| Inherits from |
IDispatch |
|---|
| Header | FaxComex.h |
|---|
| Minimum operating systems |
Windows XP, Windows Server 2003 |
|---|
See Also
IFaxIncomingArchive, FaxIncomingMessageIterator