Class BlobStorageProviderCollection

Inheritance
System.Object
BlobStorageProviderCollection
Namespace: Mediachase.BusinessFoundation.Blob
Assembly: Mediachase.BusinessFoundation.dll
Version: 10.8.0
Syntax
public class BlobStorageProviderCollection : ProviderCollection

Constructors

BlobStorageProviderCollection()

Initializes a new instance of the BlobStorageProviderCollection class.

Declaration
public BlobStorageProviderCollection()

Properties

Item[String]

Gets the BlobStorageProvider with the specified name.

Declaration
public BlobStorageProvider this[string name] { get; }
Parameters
Type Name Description
System.String name
Property Value
Type Description
BlobStorageProvider

Methods

Add(BlobStorageProvider)

Adds the specified provider.

Declaration
public void Add(BlobStorageProvider provider)
Parameters
Type Name Description
BlobStorageProvider 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(BlobStorageProvider[])

Adds the array.

Declaration
public void AddArray(BlobStorageProvider[] providerArray)
Parameters
Type Name Description
BlobStorageProvider[] providerArray

The provider array.