Class UploadProgressProviderCollection
Represents collection of upload progress provider.
Inheritance
System.Object
UploadProgressProviderCollection
Namespace: Mediachase.FileUploader.Web
Assembly: Mediachase.FileUploader.dll
Version: 10.8.0Syntax
public class UploadProgressProviderCollection : ProviderCollection
Constructors
UploadProgressProviderCollection()
Initializes a new instance of the UploadProgressProviderCollection class.
Declaration
public UploadProgressProviderCollection()
Properties
Item[String]
Gets the UploadProgressProvider with the specified name.
Declaration
public UploadProgressProvider this[string name] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name |
Property Value
| Type | Description |
|---|---|
| UploadProgressProvider |
Methods
Add(UploadProgressProvider)
Adds the specified provider.
Declaration
public void Add(UploadProgressProvider provider)
Parameters
| Type | Name | Description |
|---|---|---|
| UploadProgressProvider | provider | The provider. |
Add(ProviderBase)
Adds a provider to the collection.
Declaration
public override void Add(ProviderBase provider)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Configuration.Provider.ProviderBase | provider | The provider to be added. |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | The System.Configuration.Provider.ProviderBase.Name of provider is null.- or -The length of the System.Configuration.Provider.ProviderBase.Name of provider is less than 1. |
| System.ArgumentNullException | provider is null. |
| System.NotSupportedException | The collection is read-only. |
AddArray(UploadProgressProvider[])
Adds the array.
Declaration
public void AddArray(UploadProgressProvider[] providerArray)
Parameters
| Type | Name | Description |
|---|---|---|
| UploadProgressProvider[] | providerArray | The provider array. |