IEWSClient.MarkAllItems

MarkAllItems(bool, params string[])

Marks all items in specified folders.

public void MarkAllItems(bool read, params string[] folderIds)
ParameterTypeDescription
readBooleanSets the read/unread state to messages in specified folder. True to mark messages in the folder as read. False to mark messages as unread.
folderIdsString[]List of folder uri for processing.

See Also


MarkAllItems(bool, bool, params string[])

Marks all items in specified folders.

public void MarkAllItems(bool read, bool suppressReadReceipts, params string[] folderIds)
ParameterTypeDescription
readBooleanSets the read/unread state to messages in specified folder. True to mark messages in the folder as read. False to mark messages as unread.
suppressReadReceiptsBooleanTrue to suppress sending read receipts for messages; otherwise, false.
folderIdsString[]List of folder uri for processing.

See Also


MarkAllItems(bool, bool, IEnumerable<string>)

Marks all items in specified folders.

public void MarkAllItems(bool read, bool suppressReadReceipts, IEnumerable<string> folderIds)
ParameterTypeDescription
readBooleanSets the read/unread state to messages in specified folder. True to mark messages in the folder as read. False to mark messages as unread.
suppressReadReceiptsBooleanTrue to suppress sending read receipts for messages; otherwise, false.
folderIdsIEnumerable`1List of folder uri for processing.

See Also