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
)
<HttpGetAttribute("CodeLibraryRecursiveReferenceIds/{id}")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(409)>
<ProducesResponseTypeAttribute(410)>
<ProducesResponseTypeAttribute(440)>
Public Function CodeLibraryRecursiveReferenceIds (
id As Guid,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of IList(Of Guid))
public:
[HttpGetAttribute(L"CodeLibraryRecursiveReferenceIds/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(409)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
ActionResult<IList<Guid>^>^ CodeLibraryRecursiveReferenceIds(
Guid id,
Nullable<Guid> sessionId = nullptr
)
[<HttpGetAttribute("CodeLibraryRecursiveReferenceIds/{id}")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(409)>]
[<ProducesResponseTypeAttribute(410)>]
[<ProducesResponseTypeAttribute(440)>]
member CodeLibraryRecursiveReferenceIds :
id : Guid *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<IList<Guid>>
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