Class AutodiscoverResponseCollection<TResponse>
- Namespace
- Microsoft.Exchange.WebServices.Autodiscover
- Assembly
- Microsoft.Exchange.WebServices.dll
Represents a collection of responses to a call to the Autodiscover service.
public abstract class AutodiscoverResponseCollection<TResponse> : AutodiscoverResponse, IEnumerable<TResponse>, IEnumerable where TResponse : AutodiscoverResponseType Parameters
- TResponse
- The type of the responses in the collection. 
- Inheritance
- 
      
      
      AutodiscoverResponseCollection<TResponse>
- Implements
- 
      IEnumerable<TResponse>
- Derived
- Inherited Members
Properties
Count
Gets the number of responses in the collection.
public int Count { get; }Property Value
this[int]
Gets the response at the specified index.
public TResponse this[int index] { get; }Parameters
- indexint
- Index. 
Property Value
- TResponse
Methods
GetEnumerator()
Gets an enumerator that iterates through the elements of the collection.
public IEnumerator<TResponse> GetEnumerator()Returns
- IEnumerator<TResponse>
- An IEnumerator for the collection.