Open this page in the API Guide

IFileSystemService.GetUnreferencedEntities Method

Gets the IDs of any entities in the specified project which are not referenced.

Namespace:  Dundas.BI.FileSystem
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntax
ICollection<Guid> GetUnreferencedEntities(
	Guid projectId
)

Parameters

projectId
Type: System.Guid
The ID of the project to scan.

Return Value

Type: ICollection<Guid>
The IDs of any entities in the specified project which are not referenced.
Exceptions
ExceptionCondition
ArgumentExceptionprojectId is Empty.
InvalidOperationExceptionprojectId does not correspond to a project.
NotFoundExceptionThe specified project could not be found.
NoPrivilegeExceptionThe caller does not have the Read privilege on the specified project.
InvalidSessionExceptionThe caller context is not associated with a valid session.
Remarks

The search is limited to the following entity types:

Note Note
References to all revisions of an entity are considered.
See Also