ViewGetCodeLibraryRecursiveReferenceIds Method  | 
 
            Recursively gets the script 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.
            Reverse order means the bottom-most reference on the first edge is included first in the returned list,
            as this would be the one to be included first when using script tags.
            
 
    Namespace: 
   Dundas.BI.Entities.Views
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
Syntaxpublic IList<Guid> GetCodeLibraryRecursiveReferenceIds()
Public Function GetCodeLibraryRecursiveReferenceIds As IList(Of Guid)
public:
IList<Guid>^ GetCodeLibraryRecursiveReferenceIds()
member GetCodeLibraryRecursiveReferenceIds : unit -> IList<Guid> 
Return Value
Type: 
IListGuidA flat list of 
Guid IDs of all the references, including references of references with the bottom-most reference as the first item in the list.
Remarks
            As an example, when given the following tree structure where each line represents a reference:
            
            1
            ├── 2
            │   ├── 3
            │   └── 4
            └── 3
                └── 4
            
            This method would return a list with:
            4, 3, 2, 1
            
See Also