Open this page in the API Guide

IFileSystemService.GetCheckedOutReferences Method (ICollection<Guid>)

Gets items which are currently checked-out to the caller and referenced by at least one of the specified items.

Namespace:  Dundas.BI.FileSystem
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntax
IDictionary<Guid, ICollection<Guid>> GetCheckedOutReferences(
	ICollection<Guid> entityIds
)

Parameters

entityIds
Type: System.Collections.Generic.ICollection<Guid>
The entity IDs.

Return Value

Type: IDictionary<Guid, ICollection<Guid>>
A dictionary (keyed by entity ID), containing the corresponding collection of items referenced by that entity.
Exceptions
ExceptionCondition
ArgumentNullExceptionentityIds is null.
InvalidOperationExceptionOne or more of the specified IDs refers to an entry which is not an entity.
NoPrivilegeExceptionThe caller does not have Read access to one or more of the specified entries.
InvalidSessionExceptionThe caller context is not associated with a valid session.
See Also