Table of Contents

Class FindItemsResults<TItem>

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

Represents the results of an item search operation.

public sealed class FindItemsResults<TItem> : IEnumerable<TItem>, IEnumerable where TItem : Item

Type Parameters

TItem

The type of item returned by the search operation.

Inheritance
FindItemsResults<TItem>
Implements
Inherited Members

Properties

HighlightTerms

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

public Collection<HighlightTerm> HighlightTerms { get; }

Property Value

Collection<HighlightTerm>

Items

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

public Collection<TItem> Items { get; }

Property Value

Collection<TItem>

MoreAvailable

Gets a value indicating whether more items 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 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<TItem> GetEnumerator()

Returns

IEnumerator<TItem>

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