/// <summary>
/// The MAPIFindNext function retrieves the next (or first) message identifier of a specified type
/// of incoming message.
/// </summary>
[DllImport("MAPI32.DLL", CharSet=CharSet.Ansi)]
public static extern uint MAPIFindNext(IntPtr lhSession, IntPtr ulUIParam, string lpszMessageType,
string lpszSeedMessageID, uint flFlags, uint ulReserved, StringBuilder lpszMessageID);
Please add!
None.
None.
To get the Message ID of the first message, lpszSeedMessageID should be null or should point to an empty string. Pass null or an empty string for lpszMessageType to find InterPersonal Message (IPM).
Please add some!
Do you know one? Please contribute it!