DataProviderEnumerateCustom Method |
Enumerates the provider-specific values.
Namespace:
Dundas.BI.Data.DataProviders
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax public virtual ICollection<string> EnumerateCustom(
string valueName,
ICollection<ParameterValue> settings
)
Public Overridable Function EnumerateCustom (
valueName As String,
settings As ICollection(Of ParameterValue)
) As ICollection(Of String)
public:
virtual ICollection<String^>^ EnumerateCustom(
String^ valueName,
ICollection<ParameterValue^>^ settings
)
abstract EnumerateCustom :
valueName : string *
settings : ICollection<ParameterValue> -> ICollection<string>
override EnumerateCustom :
valueName : string *
settings : ICollection<ParameterValue> -> ICollection<string>
Parameters
- valueName
- Type: SystemString
The name of the values to enumerate. - settings
- Type: System.Collections.GenericICollectionParameterValue
The settings.
Return Value
Type:
ICollectionStringThe provider-specific values.
Exceptions Exception | Condition |
---|
NotSupportedException | Thrown when the data provider does not support enumerating provider-specific values. |
Remarks
Use this method for enumerating provider-specific values, such as list of available ODBC System Data Source Names.
See Also