FileSystemEntryControllerBaseEntryExists Method (String, Guid, NullableGuid)

Determines whether an entry with the specified name exists in the specified folder.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax
[ProducesResponseTypeAttribute(440)]
protected ActionResult<bool> EntryExists(
	string name,
	Guid parentFolderId,
	Guid? sessionId = null
)

Parameters

name
Type: SystemString
The name of the entry to check for existence.
parentFolderId
Type: SystemGuid
The ID of the parent folder.
sessionId (Optional)
Type: SystemNullableGuid
ID of the current session.

Return Value

Type: ActionResultBoolean
The operation completed successfully. The payload contains a Boolean value containing if an entry with the specified name exists in the specified folder; otherwise .
See Also