Open this page in the API Guide

ResourceController.GetBuiltInResourceFile Method

Gets the requested built-in resource 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("BuiltInResourceFile")]
[ProducesResponseTypeAttribute(410)]
public ActionResult GetBuiltInResourceFile(
	BuiltInResourceKind resourceKind,
	Guid? tenantId = null,
	Guid? sessionId = null
)

Parameters

resourceKind
Type: Dundas.BI.AppResources.BuiltInResourceKind
The kind of resource to get.
tenantId (Optional)
Type: System.Nullable<Guid>
The optional tenant ID this resource is for.
sessionId (Optional)
Type: System.Nullable<Guid>
The ID of the session.

Return Value

Type: ActionResult
The requested data as a byte stream.
See Also