LocalizationController.GetCultureLocalizationInfos Method |
Gets all the created and available culture localization infos.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[HttpGetAttribute("Infos")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<IList<LocalizationInfoData>> GetCultureLocalizationInfos(
string? cultureName = null,
Guid? sessionId = null
)
<HttpGetAttribute("Infos")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(440)>
Public Function GetCultureLocalizationInfos (
Optional cultureName As String = Nothing,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of IList(Of LocalizationInfoData))
public:
[HttpGetAttribute(L"Infos")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(440)]
ActionResult<IList<LocalizationInfoData^>^>^ GetCultureLocalizationInfos(
String^ cultureName = nullptr,
Nullable<Guid> sessionId = nullptr
)
[<HttpGetAttribute("Infos")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(440)>]
member GetCultureLocalizationInfos :
?cultureName : string *
?sessionId : Nullable<Guid>
(* Defaults:
let _cultureName = defaultArg cultureName null
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<IList<LocalizationInfoData>>
Parameters
- cultureName (Optional)
- Type: System.String
The optional culture name to use to filter the localization infos to. By default, all cultures are retrieved. - sessionId (Optional)
- Type: System.Nullable<Guid>
The ID of the session.
Return Value
Type:
ActionResult<IList<LocalizationInfoData>>The operation completed successfully. The payload contains an array of
LocalizationInfoData objects.
See Also