Class AttachmentItemCollection
Collection wrapper for legacy attachment items.
Inherited Members
Namespace: CuteWebUI
Assembly: AjaxUploader.dll
Syntax
public class AttachmentItemCollection : ICollection, IEnumerable
Properties
Count
Gets the number of attachment items in the collection.
Declaration
public int Count { get; }
Property Value
| Type | Description |
|---|---|
| int |
IsSynchronized
Gets a value indicating whether access to the ICollection is synchronized (thread safe).
Declaration
public bool IsSynchronized { get; }
Property Value
| Type | Description |
|---|---|
| bool | true if access to the ICollection is synchronized (thread safe); otherwise, false. |
this[int]
Gets the attachment item at the specified index.
Declaration
public AttachmentItem this[int index] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| int | index |
Property Value
| Type | Description |
|---|---|
| AttachmentItem |
SyncRoot
Gets an object that can be used to synchronize access to the ICollection.
Declaration
public object SyncRoot { get; }
Property Value
| Type | Description |
|---|---|
| object | An object that can be used to synchronize access to the ICollection. |
Methods
Add(int, string, Stream)
Adds an uploaded file stream to the attachment collection.
Declaration
public void Add(int filesize, string filename, Stream stream)
Parameters
| Type | Name | Description |
|---|---|---|
| int | filesize | |
| string | filename | |
| Stream | stream |
CopyTo(Array, int)
Copies the elements of the ICollection to an Array, starting at a particular Array index.
Declaration
public void CopyTo(Array array, int index)
Parameters
| Type | Name | Description |
|---|---|---|
| Array | array | The one-dimensional Array that is the destination of the elements copied from ICollection. The Array must have zero-based indexing. |
| int | index | The zero-based index in |
Exceptions
| Type | Condition |
|---|---|
| ArgumentNullException |
|
| ArgumentOutOfRangeException |
|
| ArgumentException |
|
GetEnumerator()
Returns an enumerator that iterates through a collection.
Declaration
public IEnumerator GetEnumerator()
Returns
| Type | Description |
|---|---|
| IEnumerator | An IEnumerator object that can be used to iterate through the collection. |
ToArray()
Returns the current attachment items as an array snapshot.
Declaration
public AttachmentItem[] ToArray()
Returns
| Type | Description |
|---|---|
| AttachmentItem[] |