Property | Type | Description | |
---|---|---|---|
OnCollectionChanged | void |
Method | Description | |
---|---|---|
Add ( |
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, |
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 ( |
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 ) : |
Gets mailbox from specified index.
|
Method | Description | |
---|---|---|
OnCollectionChanged ( ) : void |
This called when collection has changed. Item is added,deleted,changed or collection cleared.
|
public Add ( |
||
mailbox | Mailbox to add. | |
return | void |
public Insert ( int index, |
||
index | int | The location in the collection where you want to add the mailbox. |
mailbox | Mailbox to add. | |
return | void |
public Parse ( string mailboxList ) : void | ||
mailboxList | string | Mailbox list string. |
return | void |
public Remove ( |
||
mailbox | Mailbox to remove. | |
return | void |
public Remove ( int index ) : void | ||
index | int | Index of the mailbox which to remove. |
return | void |