C# Class LumiSoft.Net.Mime.MimeEntityCollection

Mime entity collection.
Inheritance: IEnumerable
Afficher le fichier Open project: jeske/StepsDB-alpha Class Usage Examples

Méthodes publiques

Méthode Description
Add ( ) : MimeEntity

Creates a new mime entity to the end of the collection.

Add ( MimeEntity entity ) : void

Adds specified mime entity to the end of the collection.

Clear ( ) : void

Clears the collection of all mome entities.

Contains ( MimeEntity entity ) : bool

Gets if collection contains specified mime entity.

GetEnumerator ( ) : IEnumerator

Gets enumerator.

Insert ( int index, MimeEntity entity ) : void

Inserts a new mime entity into the collection at the specified location.

Remove ( MimeEntity entity ) : void

Removes specified mime entity from the collection.

Remove ( int index ) : void

Removes mime entity at the specified index from the collection.

this ( int index ) : MimeEntity

Gets mime entity at specified index.

Private Methods

Méthode Description
MimeEntityCollection ( MimeEntity ownerEntity ) : System

Default constructor.

Method Details

Add() public méthode

Creates a new mime entity to the end of the collection.
public Add ( ) : MimeEntity
Résultat MimeEntity

Add() public méthode

Adds specified mime entity to the end of the collection.
public Add ( MimeEntity entity ) : void
entity MimeEntity Mime entity to add to the collection.
Résultat void

Clear() public méthode

Clears the collection of all mome entities.
public Clear ( ) : void
Résultat void

Contains() public méthode

Gets if collection contains specified mime entity.
public Contains ( MimeEntity entity ) : bool
entity MimeEntity Mime entity.
Résultat bool

GetEnumerator() public méthode

Gets enumerator.
public GetEnumerator ( ) : IEnumerator
Résultat IEnumerator

Insert() public méthode

Inserts a new mime entity into the collection at the specified location.
public Insert ( int index, MimeEntity entity ) : void
index int The location in the collection where you want to add the mime entity.
entity MimeEntity Mime entity.
Résultat void

Remove() public méthode

Removes specified mime entity from the collection.
public Remove ( MimeEntity entity ) : void
entity MimeEntity Mime entity to remove.
Résultat void

Remove() public méthode

Removes mime entity at the specified index from the collection.
public Remove ( int index ) : void
index int Index of mime entity to remove.
Résultat void

this() public méthode

Gets mime entity at specified index.
public this ( int index ) : MimeEntity
index int
Résultat MimeEntity