LocalizationController.GetLocalization Method |
Gets the contents of the specified localization.
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]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<string> GetLocalization(
string cultureName,
Guid moduleId,
string name,
bool isOverride,
Guid? sessionId = null
)
<HttpGetAttribute>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(410)>
<ProducesResponseTypeAttribute(440)>
Public Function GetLocalization (
cultureName As String,
moduleId As Guid,
name As String,
isOverride As Boolean,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of String)
public:
[HttpGetAttribute]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
ActionResult<String^>^ GetLocalization(
String^ cultureName,
Guid moduleId,
String^ name,
bool isOverride,
Nullable<Guid> sessionId = nullptr
)
[<HttpGetAttribute>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(410)>]
[<ProducesResponseTypeAttribute(440)>]
member GetLocalization :
cultureName : string *
moduleId : Guid *
name : string *
isOverride : bool *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<string>
Parameters
- cultureName
- Type: System.String
The name of the culture to get the localization for. - moduleId
- Type: System.Guid
The ID of the module the localization belongs to. - name
- Type: System.String
The name of localization. - isOverride
- Type: System.Boolean
A flag indicating whether or not this is an override. - sessionId (Optional)
- Type: System.Nullable<Guid>
The ID of the session.
Return Value
Type:
ActionResult<String>The operation completed successfully. The payload contains a
String object.
See Also