ConnectionStringBuilderGetValueT(IEnumerableString, T) Method |
Gets the value with the specified data type.
Namespace: Dundas.BI.Data.DataProvidersAssembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
Syntaxpublic T GetValue<T>(
IEnumerable<string> keys,
T defaultValue
)
Public Function GetValue(Of T) (
keys As IEnumerable(Of String),
defaultValue As T
) As T
public:
generic<typename T>
T GetValue(
IEnumerable<String^>^ keys,
T defaultValue
)
member GetValue :
keys : IEnumerable<string> *
defaultValue : 'T -> 'T Parameters
- keys IEnumerableString
- The possible keys ("synonyms").
- defaultValue T
- The default value.
Type Parameters
- T
- Data type of the value.
Return Value
TThe value.
See Also