Click or drag to resize

BasicAppSettingsGetValuesT Method

NOT IMPLEMENTED! Returns an array of values for a key. If there is no value for the key, defaultValue is returned. Wildcards of the form %Name% are replaced recursively if possible; An attempt is made to cast the determined string value to the return type T.

Namespace: NetEti.ApplicationEnvironment
Assembly: NetEti.BasicAppSettings (in NetEti.BasicAppSettings.dll) Version: 1.0.0+fc721cf1d38e1de155fd33971356662ac9c21f21
Syntax
public T[]? GetValues<T>(
	
	string key,
	T[]? defaultValues
)

Parameters

key  String
The access key (string)
defaultValues  T
The default result of type T[]

Type parameters

T
The desired return type

Return value

T
Value array for the key cast to the return type

Implemented

IGetValueGetValuesT(String, T)
Exceptions
ExceptionCondition
InvalidCastExceptionTypecast error
See also