Open this page in the API Guide

LocalizationController.GetLocalizationFile Method

Gets the requested localization as a file.

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("File")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult GetLocalizationFile(
	string cultureName,
	Guid moduleId,
	string name,
	bool isOverride,
	Guid? sessionId = null
)

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
The requested data as a byte stream.
See Also