Table of Contents

Class ExpandGroupResults

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

Represents the results of an ExpandGroup operation.

public sealed class ExpandGroupResults : IEnumerable<EmailAddress>, IEnumerable
Inheritance
ExpandGroupResults
Implements
Inherited Members

Properties

Count

Gets the number of members that were returned by the ExpandGroup operation. Count might be less than the total number of members in the group, in which case the value of the IncludesAllMembers is false.

public int Count { get; }

Property Value

int

IncludesAllMembers

Gets a value indicating whether all the members of the group have been returned by ExpandGroup.

public bool IncludesAllMembers { get; }

Property Value

bool

Members

Gets the members of the expanded group.

public Collection<EmailAddress> Members { get; }

Property Value

Collection<EmailAddress>

Methods

GetEnumerator()

Gets an enumerator that iterates through the elements of the collection.

public IEnumerator<EmailAddress> GetEnumerator()

Returns

IEnumerator<EmailAddress>

An IEnumerator for the collection.