C# 클래스 LumiSoft.Net.Mime.MimeEntityCollection

Mime entity collection.
상속: IEnumerable
파일 보기 프로젝트 열기: jeske/StepsDB-alpha 1 사용 예제들

공개 메소드들

메소드 설명
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.

비공개 메소드들

메소드 설명
MimeEntityCollection ( MimeEntity ownerEntity ) : System

Default constructor.

메소드 상세

Add() 공개 메소드

Creates a new mime entity to the end of the collection.
public Add ( ) : MimeEntity
리턴 MimeEntity

Add() 공개 메소드

Adds specified mime entity to the end of the collection.
public Add ( MimeEntity entity ) : void
entity MimeEntity Mime entity to add to the collection.
리턴 void

Clear() 공개 메소드

Clears the collection of all mome entities.
public Clear ( ) : void
리턴 void

Contains() 공개 메소드

Gets if collection contains specified mime entity.
public Contains ( MimeEntity entity ) : bool
entity MimeEntity Mime entity.
리턴 bool

GetEnumerator() 공개 메소드

Gets enumerator.
public GetEnumerator ( ) : IEnumerator
리턴 IEnumerator

Insert() 공개 메소드

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.
리턴 void

Remove() 공개 메소드

Removes specified mime entity from the collection.
public Remove ( MimeEntity entity ) : void
entity MimeEntity Mime entity to remove.
리턴 void

Remove() 공개 메소드

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

this() 공개 메소드

Gets mime entity at specified index.
public this ( int index ) : MimeEntity
index int
리턴 MimeEntity