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 (8.0.2.1001)
SyntaxICollection<AppSettingValue> GetAllValuesForSetting(
Guid settingId
)
Function GetAllValuesForSetting (
settingId As Guid
) As ICollection(Of AppSettingValue)
ICollection<AppSettingValue^>^ GetAllValuesForSetting(
Guid settingId
)
abstract GetAllValuesForSetting :
settingId : Guid -> ICollection<AppSettingValue>
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| Exception | Condition |
|---|
| ArgumentException | settingId is Empty. |
| NotFoundException | There was no registered setting corresponding to the provided setting ID. |
| NoPrivilegeException | The caller does not have system administration privileges. |
| InvalidSessionException | The 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