Interface IMIMEPartsCollection
Collection to store parts.
Inherited Members
System.Collections.ICollection.CopyTo(System.Array, System.Int32)
System.Collections.ICollection.Count
System.Collections.ICollection.IsSynchronized
System.Collections.ICollection.SyncRoot
System.Collections.IEnumerable.GetEnumerator()
Namespace: Syncfusion.MIME
Assembly: Syncfusion.MIME.Base.dll
Syntax
public interface IMIMEPartsCollection : ICollection, IEnumerable, IMIMESerialization
Properties
Item[Int32]
indexator wich allow access to part by. index
Declaration
IMIMEPart this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index |
Property Value
Type |
---|
IMIMEPart |
Item[String]
indexator, wich allow access to part by boundary.
Declaration
IMIMEPart this[string boundary] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.String | boundary |
Property Value
Type |
---|
IMIMEPart |
Methods
Add(IMIMEPart)
adding part to collection.
Declaration
void Add(IMIMEPart value)
Parameters
Type | Name | Description |
---|---|---|
IMIMEPart | value | part to add. |
Clear()
Clear collection
Declaration
void Clear()
Contains(IMIMEPart)
method to check if part is present in collection.
Declaration
bool Contains(IMIMEPart value)
Parameters
Type | Name | Description |
---|---|---|
IMIMEPart | value | part to check |
Returns
Type | Description |
---|---|
System.Boolean | True - if part if present, otherwise False |
Remove(IMIMEPart)
removes part from collection.
Declaration
void Remove(IMIMEPart value)
Parameters
Type | Name | Description |
---|---|---|
IMIMEPart | value | part to add. |