GetContents

GetContents(bool)

获取消息集合。

public MessageInfoCollection GetContents(bool tryToReadCorruptedContents)
范围类型描述
tryToReadCorruptedContentsBoolean如果此参数的值为 true, 该方法将尝试读取内容,即使文件已损坏。 如果 GetContents() 方法引发有关文件损坏的异常,则可以使用此值。 如果此参数的值为false, 该方法的工作方式与不带参数的GetContents() 方法相同。

返回值

MessageInfo 的集合。

也可以看看


GetContents()

获取消息集合。

public MessageInfoCollection GetContents()

返回值

MessageInfo 的集合。

也可以看看


GetContents(MessageKind)

获取消息集合。

public MessageInfoCollection GetContents(MessageKind kind)
范围类型描述
kindMessageKind消息种类.

返回值

MessageInfo. 的集合

也可以看看


GetContents(MailQuery)

获取消息集合。

public MessageInfoCollection GetContents(MailQuery query)
范围类型描述
queryMailQueryMailQuery表示搜索查询。

返回值

MessageInfo 的集合。

也可以看看


GetContents(int, int)

获取消息的集合。

public MessageInfoCollection GetContents(int startIndex, int count)
范围类型描述
startIndexInt32开始消息索引。
countInt32将检索的消息数。

返回值

MessageInfo 的集合。

例外

例外(健康)状况
ArgumentOutOfRangeException如果 startIndex 小于 0,则抛出。
ArgumentOutOfRangeException如果 startIndex 大于或等于该文件夹包含的总消息数,则抛出。

评论

如果“count”参数小于 0 或大于剩余消息计数,则将返回剩余消息计数。

也可以看看