IAppConfigServiceGetAllValuesForSetting Method

Gets the values for a setting at all scopes.

Namespace:  Dundas.BI.Configuration
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax
ICollection<AppSettingValue> GetAllValuesForSetting(
	Guid settingId
)

Parameters

settingId
Type: SystemGuid
The ID of the setting.

Return Value

Type: ICollectionAppSettingValue
A collection of objects containing the value of the setting at the associated scope and scope target.
Exceptions
ExceptionCondition
ArgumentExceptionsettingId is Empty.
NotFoundExceptionThere was no registered setting corresponding to the provided setting ID.
NoPrivilegeExceptionThe caller does not have system administration privileges.
InvalidSessionExceptionThe caller context is not associated with a valid session.
Remarks
This method only returns values which have been explicitly set. Default and effective values are not included.
See Also