MimeEntityCollection Class
Namespace: Rebex.Mime
Assembly: Rebex.Mail.dll (version 7.0.9083)
Represents the collection of MimeEntity objects that are parts of this MimeEntity.
Syntax
public class MimeEntityCollection : IEnumerable<MimeEntity>, IEnumerable
Inherited Members
Properties
Name | Description |
---|---|
Count | Gets the number of entities contained in the MimeEntityCollection. |
Item[Int32] | Gets or sets the MimeEntity at the specified index. |
SyncRoot | Gets an object that can be used to synchronize access to the MimeEntityCollection. |
Methods
Name | Description |
---|---|
Add(MimeEntity) | Adds a MimeEntity to the end of the list. |
Clear() | Removes all entities from the list. |
GetEnumerator() | Gets an IEnumerator for the MimeEntityCollection collection. |
Insert(Int32, MimeEntity) | Inserts a MimeEntity into the list at the specified index. |
Remove(MimeEntity) | Removes the specified MimeEntity from the list. |
RemoveAt(Int32) | Removes the MimeEntity at the specified index from the list. |
Explicit Interface Implementations
Name | Description |
---|---|
IEnumerable<MimeEntity>.GetEnumerator() | Gets an IEnumerator<T> for the MimeEntityCollection collection. |