Table of Contents

Class GroupedFindItemsResults<TItem>

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

Represents the results of an item search operation.

public sealed class GroupedFindItemsResults<TItem> : IEnumerable<ItemGroup<TItem>>, IEnumerable where TItem : Item

Type Parameters

TItem

The type of item returned by the search operation.

Inheritance
GroupedFindItemsResults<TItem>
Implements
Inherited Members

Properties

ItemGroups

Gets the item groups returned by the search operation.

public Collection<ItemGroup<TItem>> ItemGroups { get; }

Property Value

Collection<ItemGroup<TItem>>

MoreAvailable

Gets a value indicating whether more items corresponding to 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 ItemView to retrieve the next page of items in a FindItems operation.

public int? NextPageOffset { get; }

Property Value

int?

TotalCount

Gets the total number of items 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<ItemGroup<TItem>> GetEnumerator()

Returns

IEnumerator<ItemGroup<TItem>>

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