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

Rfc 2822 3.4 mailbox-list. Syntax: mailbox *(',' mailbox).
상속: IEnumerable
파일 보기 프로젝트 열기: jeske/StepsDB-alpha 1 사용 예제들

Private Properties

프로퍼티 타입 설명
OnCollectionChanged void

공개 메소드들

메소드 설명
Add ( MailboxAddress mailbox ) : void

Adds a new mailbox to the end of the collection.

Clear ( ) : void

Clears the collection of all mailboxes.

GetEnumerator ( ) : IEnumerator

Gets enumerator.

Insert ( int index, MailboxAddress mailbox ) : void

Inserts a new mailbox into the collection at the specified location.

MailboxAddressCollection ( ) : System

Default constructor.

Parse ( string mailboxList ) : void

Parses mailboxes from Rfc 2822 3.4 mailbox-list string. Syntax: mailbox *(',' mailbox).

Remove ( MailboxAddress mailbox ) : void

Removes specified mailbox from the collection.

Remove ( int index ) : void

Removes header field at the specified index from the collection.

ToMailboxListString ( ) : string

Convert addresses to Rfc 2822 mailbox-list string.

this ( int index ) : MailboxAddress

Gets mailbox from specified index.

비공개 메소드들

메소드 설명
OnCollectionChanged ( ) : void

This called when collection has changed. Item is added,deleted,changed or collection cleared.

메소드 상세

Add() 공개 메소드

Adds a new mailbox to the end of the collection.
public Add ( MailboxAddress mailbox ) : void
mailbox MailboxAddress Mailbox to add.
리턴 void

Clear() 공개 메소드

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

GetEnumerator() 공개 메소드

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

Insert() 공개 메소드

Inserts a new mailbox into the collection at the specified location.
public Insert ( int index, MailboxAddress mailbox ) : void
index int The location in the collection where you want to add the mailbox.
mailbox MailboxAddress Mailbox to add.
리턴 void

MailboxAddressCollection() 공개 메소드

Default constructor.
public MailboxAddressCollection ( ) : System
리턴 System

Parse() 공개 메소드

Parses mailboxes from Rfc 2822 3.4 mailbox-list string. Syntax: mailbox *(',' mailbox).
public Parse ( string mailboxList ) : void
mailboxList string Mailbox list string.
리턴 void

Remove() 공개 메소드

Removes specified mailbox from the collection.
public Remove ( MailboxAddress mailbox ) : void
mailbox MailboxAddress Mailbox to remove.
리턴 void

Remove() 공개 메소드

Removes header field at the specified index from the collection.
public Remove ( int index ) : void
index int Index of the mailbox which to remove.
리턴 void

ToMailboxListString() 공개 메소드

Convert addresses to Rfc 2822 mailbox-list string.
public ToMailboxListString ( ) : string
리턴 string

this() 공개 메소드

Gets mailbox from specified index.
public this ( int index ) : MailboxAddress
index int
리턴 MailboxAddress