Open this page in the API Guide

ViewController<T>.CodeLibraryRecursiveReferenceIds Method

Recursively gets the code library reference IDs in the reverse order as a flat list so that they can be included in script includes on a web page. See GetCodeLibraryRecursiveReferenceIds() for more information on the methodology.

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("CodeLibraryRecursiveReferenceIds/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(409)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<IList<Guid>> CodeLibraryRecursiveReferenceIds(
	Guid id,
	Guid? sessionId = null
)

Parameters

id
Type: System.Guid
The ID of the view to get the code library reference IDs for.
sessionId (Optional)
Type: System.Nullable<Guid>
Current session ID.

Return Value

Type: ActionResult<IList<Guid>>
The operation completed successfully. The payload contains an array of Guid objects containing the recursive IDs of the code libraries referenced.
See Also