PersonalStorage.EnumerateMessages

EnumerateMessages(string)

Exposes the enumerator, which supports an iteration of messages in folder.

public IEnumerable<MessageInfo> EnumerateMessages(string entryId)
ParameterTypeDescription
entryIdStringThe string that represents a parent folder entry ID.

Return Value

IEnumerable, that represents an enumerator that iterates through a messages in folder.

See Also


EnumerateMessages(string, int, int)

Exposes the enumerator, which supports an iteration of messages in folder.

public IEnumerable<MessageInfo> EnumerateMessages(string entryId, int startIndex, int count)
ParameterTypeDescription
entryIdStringThe string that represents a parent folder entry ID.
startIndexInt32The start message index.
countInt32The number of messages that will be retrieved.

Return Value

IEnumerable, that represents an enumerator that iterates through a messages in folder.

See Also