EwsItemCollection Class
Namespace: Rebex.Net
Assembly: Rebex.Ews.dll (version 7.0.9083)
Represents a strongly typed collection of EwsItemInfo objects.
Syntax
public class EwsItemCollection : ICollection<EwsItemInfo>, IEnumerable<EwsItemInfo>, IEnumerable
Inherited Members
Constructors
Name | Description |
---|---|
EwsItemCollection() | Initializes new empty instance. |
Properties
Name | Description |
---|---|
Count | Gets the number of elements contained in the collection. |
Item[Int32] | Gets an EwsItemInfo objects at the specified index. |
PageResult | Gets additional information if paging was used. |
SyncRoot | Gets an object that can be used to synchronize access to the collection. |
Methods
Name | Description |
---|---|
Add(EwsItemInfo) | Adds the specified item to the end of the collection. |
AddRange(IEnumerable<EwsItemInfo>) | Adds the specified items to the end of the collection. |
Clear() | Removes all elements from the collection. |
Contains(EwsItemInfo) | Determines whether the item is in the collection. |
CopyTo(EwsItemInfo[], Int32) | Copies the range of elements from the collection to a one-dimensional EwsItemInfo array, starting at the specified index of the target array. |
GetEnumerator() | Gets an IEnumerator<T> for the collection. |
Remove(EwsItemInfo) | Removes the specified item from the collection. |
Explicit Interface Implementations
Name | Description |
---|---|
ICollection<EwsItemInfo>.IsReadOnly | Gets a value indicating whether the collection is read-only. |
IEnumerable.GetEnumerator() | Returns an enumerator that can iterate through the collection. |