ApplicationConfigurationController.GetSetValueForSetting Method |
Gets the set value for a specific setting and scope/scope target.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[HttpPostAttribute("GetSetValueForSetting")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(404)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<AppSettingValueData> GetSetValueForSetting(
[FromBodyAttribute] ConfigValueOptions options,
Guid? sessionId = null
)
<HttpPostAttribute("GetSetValueForSetting")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(404)>
<ProducesResponseTypeAttribute(440)>
Public Function GetSetValueForSetting (
<FromBodyAttribute> options As ConfigValueOptions,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of AppSettingValueData)
public:
[HttpPostAttribute(L"GetSetValueForSetting")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(404)]
[ProducesResponseTypeAttribute(440)]
ActionResult<AppSettingValueData^>^ GetSetValueForSetting(
[FromBodyAttribute] ConfigValueOptions^ options,
Nullable<Guid> sessionId = nullptr
)
[<HttpPostAttribute("GetSetValueForSetting")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(404)>]
[<ProducesResponseTypeAttribute(440)>]
member GetSetValueForSetting :
[<FromBodyAttribute>] options : ConfigValueOptions *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<AppSettingValueData>
Parameters
- options
- Type: Dundas.BI.WebApi.Models.ConfigValueOptions
A ConfigValueOptions object that carries the needed information about the setting to be retrieved. - sessionId (Optional)
- Type: System.Nullable<Guid>
ID of the current session.
Return Value
Type:
ActionResult<AppSettingValueData>The operation completed successfully. The payload contains an
AppSettingValueData object.
See Also