Method | Description | |
---|---|---|
Add ( ) : |
Creates a new mime entity to the end of the collection.
|
|
Add ( |
Adds specified mime entity to the end of the collection.
|
|
Clear ( ) : void |
Clears the collection of all mome entities.
|
|
Contains ( |
Gets if collection contains specified mime entity.
|
|
GetEnumerator ( ) : IEnumerator |
Gets enumerator.
|
|
Insert ( int index, |
Inserts a new mime entity into the collection at the specified location.
|
|
Remove ( |
Removes specified mime entity from the collection.
|
|
Remove ( int index ) : void |
Removes mime entity at the specified index from the collection.
|
|
this ( int index ) : |
Gets mime entity at specified index.
|
Method | Description | |
---|---|---|
MimeEntityCollection ( |
Default constructor.
|
public Add ( |
||
entity | Mime entity to add to the collection. | |
return | void |
public Contains ( |
||
entity | Mime entity. | |
return | bool |
public Insert ( int index, |
||
index | int | The location in the collection where you want to add the mime entity. |
entity | Mime entity. | |
return | void |
public Remove ( |
||
entity | Mime entity to remove. | |
return | void |
public Remove ( int index ) : void | ||
index | int | Index of mime entity to remove. |
return | void |