Class FilterExpressionProviderCollection
Represents filter expression provider collection.
Inheritance
System.Object
FilterExpressionProviderCollection
Namespace: Mediachase.BusinessFoundation
Assembly: Mediachase.BusinessFoundation.dll
Version: 13.30.0Syntax
public class FilterExpressionProviderCollection : ProviderCollection
Constructors
FilterExpressionProviderCollection()
Initializes a new instance of the FilterExpressionProviderCollection class.
Declaration
public FilterExpressionProviderCollection()
Properties
Item[String]
Gets the FilterExpressionProvider with the specified name.
Declaration
public FilterExpressionProvider this[string name] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.String | name |
Property Value
Type | Description |
---|---|
FilterExpressionProvider |
Methods
Add(FilterExpressionProvider)
Adds the specified provider.
Declaration
public void Add(FilterExpressionProvider provider)
Parameters
Type | Name | Description |
---|---|---|
FilterExpressionProvider | 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(FilterExpressionProvider[])
Adds the array.
Declaration
public void AddArray(FilterExpressionProvider[] providerArray)
Parameters
Type | Name | Description |
---|---|---|
FilterExpressionProvider[] | providerArray | The provider array. |