Table of Contents

Class FindFoldersResults

Namespace
Microsoft.Exchange.WebServices.Data
Assembly
Microsoft.Exchange.WebServices.dll

Represents the results of a folder search operation.

public sealed class FindFoldersResults : IEnumerable<Folder>, IEnumerable
Inheritance
FindFoldersResults
Implements
Inherited Members

Properties

Folders

Gets a collection containing the folders that were found by the search operation.

public Collection<Folder> Folders { get; }

Property Value

Collection<Folder>

MoreAvailable

Gets a value indicating whether more folders matching the search criteria. are available in the searched folder.

public bool MoreAvailable { get; }

Property Value

bool

NextPageOffset

Gets the offset that should be used with FolderView to retrieve the next page of folders in a FindFolders operation.

public int? NextPageOffset { get; }

Property Value

int?

TotalCount

Gets the total number of folders matching the search criteria available in the searched folder.

public int TotalCount { get; }

Property Value

int

Methods

GetEnumerator()

Returns an enumerator that iterates through the collection.

public IEnumerator<Folder> GetEnumerator()

Returns

IEnumerator<Folder>

A IEnumerator<T> that can be used to iterate through the collection.