IFileSystemServiceGetEntry(String, Guid, GetEntryOptions) Method

Gets a FileSystemEntry specified by its name and parent folder.

Namespace: Dundas.BI.FileSystem
Assembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
Syntax
FileSystemEntry GetEntry(
	string name,
	Guid parentId,
	GetEntryOptions options
)

Parameters

name  String
The name of the folder to get.
parentId  Guid
The ID of the parent entry.
options  GetEntryOptions
Options affecting the behavior of the operation.

Return Value

FileSystemEntry
The entry with the specified name in the specified parent entry.
Exceptions
ExceptionCondition
ArgumentExceptionparentId is Empty; -or- name is or empty.
NotFoundException The entry does not exist, or optionsSkipRecycled is specified and entry is recycled.
NoPrivilegeExceptionThe caller does not have permission to access the entry.
InvalidSessionExceptionThe caller context is not associated with a valid session.
See Also